1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#! /usr/bin/env python
# encoding: utf-8
APPNAME='showq'
VERSION='0.5.0'
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.recurse('src ui')
conf.define('GETTEXT_PACKAGE', 'showq')
conf.define('PROGRAMNAME_LOCALEDIR', conf.options.prefix + 'share/showq')
conf.define('UI_DIR', conf.options.prefix + 'share/showq/ui/')
conf.define('VERSIONSTRING', VERSION)
conf.write_config_header('config.h')
def build(bld):
bld.recurse('src ui')
|