OTHER: Remove some cruft and clean up build system

This commit is contained in:
Thomas Frauendorfer 2009-08-31 23:22:35 +02:00
parent 3eb11f6933
commit 7501a912c9
7 changed files with 78 additions and 27 deletions

View file

@ -49,12 +49,12 @@ def set_options(opt):
def configure(conf):
pass
def build(bld):
obj = bld.new_task_gen('qt4', 'staticlib', 'cxx')
obj.target = 'lib_promoe'
obj.install_path = 0 # Don't install
obj.includes = '.'
obj.source = lib_source
obj.uselib = 'QTCORE QTGUI XMMS2-CLIENT-CPP'
obj = bld.new_task_gen('qt4', 'staticlib', 'cxx')
obj.target = 'promoe_lib'
obj.install_path = 0 # Don't install
obj.includes = '.'
obj.source = lib_source
obj.uselib = 'QTCORE QTGUI XMMS2-CLIENT-CPP'
obj.export_incdirs = '.'
pass