diff options
author | David Robillard <d@drobilla.net> | 2009-10-23 02:29:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-10-23 02:29:14 +0000 |
commit | 1a77cedde712ca7b8f0e68246877747b0be07bd9 (patch) | |
tree | 8fc2763170529d62e0d9f764373e2a66a7ccddb6 /src/ingen/wscript | |
parent | 20714a82da8b6c808be5f17d7add9e164ab154e3 (diff) | |
download | ingen-1a77cedde712ca7b8f0e68246877747b0be07bd9.tar.gz ingen-1a77cedde712ca7b8f0e68246877747b0be07bd9.tar.bz2 ingen-1a77cedde712ca7b8f0e68246877747b0be07bd9.zip |
Upgrade to waf 1.5.9.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2202 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen/wscript')
-rw-r--r-- | src/ingen/wscript | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ingen/wscript b/src/ingen/wscript index 2008930e..61c69bcd 100644 --- a/src/ingen/wscript +++ b/src/ingen/wscript @@ -2,7 +2,7 @@ import autowaf def build(bld): - obj = bld.new_task_gen('cxx', 'program') + obj = bld.new_task_gen(features='cxx cc cprogram') obj.target = 'ingen' obj.source = 'main.cpp cmdline.c' obj.includes = ['..', '../..', '../common'] @@ -12,4 +12,3 @@ def build(bld): autowaf.use_lib(bld, obj, 'GTHREAD GLIBMM REDLANDMM RAUL LV2CORE SLV2 INGEN LIBLO SOUP') bld.install_files('${DATADIR}/applications', 'ingen.desktop') - |