diff options
author | David Robillard <d@drobilla.net> | 2008-11-29 03:23:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-29 03:23:26 +0000 |
commit | e1576e203924d8413375a53a9100c0e80aefaa15 (patch) | |
tree | fc374aab01a54c6fccdeb913aa963172c0e8bc26 /tests | |
parent | 4c5bd342b96d96db0491092b4577891d2780716b (diff) | |
download | raul-e1576e203924d8413375a53a9100c0e80aefaa15.tar.gz raul-e1576e203924d8413375a53a9100c0e80aefaa15.tar.bz2 raul-e1576e203924d8413375a53a9100c0e80aefaa15.zip |
Upgrade to waf 1.5.0.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1823 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wscript b/tests/wscript index 95c8177..0822f16 100644 --- a/tests/wscript +++ b/tests/wscript @@ -15,10 +15,10 @@ def build(bld): table_test ''' for i in tests.split(): - obj = bld.create_obj('cpp', 'program') + obj = bld.new_task_gen('cxx', 'program') obj.source = i + '.cpp' obj.includes = '..' obj.uselib_local = 'libraul' obj.target = i - obj.inst_var = 0 + obj.install_path = '' |