From 89a67e6bcc4dedb85b2f3cff0a346b3c8c637ae9 Mon Sep 17 00:00:00 2001 From: Thomas Frauendorfer Date: Sun, 18 Oct 2009 23:56:06 +0200 Subject: [PATCH] OTHER: update functioncall in wscript to current api --- backend_xmmsclient++/wscript | 2 +- data/wscript | 2 +- src/wscript | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend_xmmsclient++/wscript b/backend_xmmsclient++/wscript index 892bae3..4da79fd 100644 --- a/backend_xmmsclient++/wscript +++ b/backend_xmmsclient++/wscript @@ -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 = '.' diff --git a/data/wscript b/data/wscript index 0efa1a1..fc33cb4 100644 --- a/data/wscript +++ b/data/wscript @@ -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' diff --git a/src/wscript b/src/wscript index e86ba32..38e21d4 100644 --- a/src/wscript +++ b/src/wscript @@ -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