various fixes for push2 support. Now setups video display when enabled

This commit is contained in:
Paul Davis
2016-06-16 00:07:43 -04:00
parent 413fe2cf9a
commit 189173c1b1
8 changed files with 248 additions and 78 deletions

View File

@@ -6,17 +6,16 @@ import os
top = '.'
out = 'build'
print "this is push2"
def options(opt):
autowaf.set_options(opt)
def configure(conf):
conf.load ('compiler_cxx')
autowaf.configure(conf)
autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4')
autowaf.check_pkg(conf, 'pangomm-1.5', uselib_store='CAIROMM', atleast_version='1.4')
def configure(conf):
autowaf.configure(conf)
autowaf.check_pkg(conf, 'pangomm-1.4', uselib_store='PANGOMM', atleast_version='1.4', mandatory=True)
autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4', mandatory=True)
def build(bld):
obj = bld(features = 'cxx cxxshlib')