diff options
author | David Robillard <d@drobilla.net> | 2010-12-16 04:04:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-16 04:04:45 +0000 |
commit | 50701a1143c836d24d368298ee9068e721c8a066 (patch) | |
tree | 0b7fe58a65d60d6b87c0165f101a7836ba96e8a8 /src/ingen/wscript | |
parent | 6ff0b063d9ffb66e690d34bcf934eeab1a3bf46d (diff) | |
download | ingen-50701a1143c836d24d368298ee9068e721c8a066.tar.gz ingen-50701a1143c836d24d368298ee9068e721c8a066.tar.bz2 ingen-50701a1143c836d24d368298ee9068e721c8a066.zip |
Updates for waf 1.6.
Note: this revision breaks documentation installation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2719 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/ingen/wscript')
-rw-r--r-- | src/ingen/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ingen/wscript b/src/ingen/wscript index 839b789b..df7627ab 100644 --- a/src/ingen/wscript +++ b/src/ingen/wscript @@ -2,12 +2,12 @@ import autowaf def build(bld): - obj = bld.new_task_gen(features='cxx cc cprogram') + obj = bld(features = 'c cxx cxxprogram') obj.target = 'ingen' obj.source = 'main.cpp' obj.includes = ['..', '../..', '../common'] obj.defines = 'VERSION="' + bld.env['INGEN_VERSION'] + '"' - obj.uselib_local = 'libingen_module libingen_shared' + obj.use = 'libingen_module libingen_shared' obj.install_path = '${BINDIR}' autowaf.use_lib(bld, obj, 'GTHREAD GLIBMM REDLANDMM RAUL LV2CORE SLV2 INGEN LIBLO SOUP') |