OTHER: update functioncall in wscript to current api
This commit is contained in:
parent
0e8e5c69a6
commit
89a67e6bcc
3 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ def set_options(opt):
|
||||||
def configure(conf):
|
def configure(conf):
|
||||||
pass
|
pass
|
||||||
def build(bld):
|
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.target = 'backend_lib'
|
||||||
obj.install_path = 0 # Don't install
|
obj.install_path = 0 # Don't install
|
||||||
obj.includes = '.'
|
obj.includes = '.'
|
||||||
|
|
|
@ -40,7 +40,7 @@ def configure(conf):
|
||||||
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
obj = bld.new_task_gen('qt4', 'cxx')
|
obj = bld.new_task_gen(features='qt4 cxx')
|
||||||
obj.target = 'promoe_data'
|
obj.target = 'promoe_data'
|
||||||
obj.install_path = 0 # Don't install
|
obj.install_path = 0 # Don't install
|
||||||
obj.source = 'skins/Almond-blue.qrc'
|
obj.source = 'skins/Almond-blue.qrc'
|
||||||
|
|
|
@ -94,7 +94,7 @@ def build(bld):
|
||||||
incdirs = bld_subdirs
|
incdirs = bld_subdirs
|
||||||
incdirs.append('.')
|
incdirs.append('.')
|
||||||
|
|
||||||
obj = bld.new_task_gen('qt4', 'cprogram', 'cxx')
|
obj = bld.new_task_gen(features='qt4 cprogram cxx')
|
||||||
obj.target = 'promoe'
|
obj.target = 'promoe'
|
||||||
obj.includes = incdirs
|
obj.includes = incdirs
|
||||||
obj.source = sources
|
obj.source = sources
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue