OTHER: update functioncall in wscript to current api

This commit is contained in:
Thomas Frauendorfer 2009-10-18 23:56:06 +02:00
parent 0e8e5c69a6
commit 89a67e6bcc
3 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ def set_options(opt):
def configure(conf):
pass
def build(bld):
obj = bld.new_task_gen('qt4', 'cstaticlib', 'cxx')
obj = bld.new_task_gen(features='qt4 cstaticlib cxx')
obj.target = 'backend_lib'
obj.install_path = 0 # Don't install
obj.includes = '.'

View file

@ -40,7 +40,7 @@ def configure(conf):
def build(bld):
obj = bld.new_task_gen('qt4', 'cxx')
obj = bld.new_task_gen(features='qt4 cxx')
obj.target = 'promoe_data'
obj.install_path = 0 # Don't install
obj.source = 'skins/Almond-blue.qrc'

View file

@ -94,7 +94,7 @@ def build(bld):
incdirs = bld_subdirs
incdirs.append('.')
obj = bld.new_task_gen('qt4', 'cprogram', 'cxx')
obj = bld.new_task_gen(features='qt4 cprogram cxx')
obj.target = 'promoe'
obj.includes = incdirs
obj.source = sources