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 | 9f1ff36d40f916c253cebb1e9f336af53ce31f5d (patch) | |
tree | 4f38cadd45de64b44e6ce209709b3350673a7db4 /src/serialisation/wscript | |
parent | ce6cec92071bcf7b247daa3128e39f7fb9f3200b (diff) | |
download | ingen-9f1ff36d40f916c253cebb1e9f336af53ce31f5d.tar.gz ingen-9f1ff36d40f916c253cebb1e9f336af53ce31f5d.tar.bz2 ingen-9f1ff36d40f916c253cebb1e9f336af53ce31f5d.zip |
Upgrade to waf 1.5.0.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1823 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/wscript')
-rw-r--r-- | src/serialisation/wscript | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript index b946e7bf..b72b6507 100644 --- a/src/serialisation/wscript +++ b/src/serialisation/wscript @@ -1,9 +1,8 @@ #!/usr/bin/env python -import Params import autowaf def build(bld): - obj = bld.create_obj('cpp', 'shlib') + obj = bld.new_task_gen('cxx', 'shlib') obj.source = ''' Parser.cpp Serialiser.cpp @@ -12,7 +11,7 @@ def build(bld): obj.includes = ['.', '..', '../common'] obj.name = 'libingen_serialisation' obj.target = 'ingen_serialisation' - obj.inst_dir = bld.env()['LIBDIRNAME'] + 'ingen' + obj.install_path = '${LIBDIR}/ingen' obj.uselib_local = 'libingen_shared' autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM') |