#! /usr/bin/env python
# WAF build script for Postler (based on Midori's wscript)
#
# This script is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# See the file COPYING for the full license text.

obj = bld.new_task_gen ('cc', 'program')
obj.target = 'postler-mbsync'
obj.includes = '. ..'
obj.source = 'main.c sync.c config.c util.c drv_imap.c drv_maildir.c'
obj.uselib = 'DB_CREATE OPENSSL'

