From 9f1ff36d40f916c253cebb1e9f336af53ce31f5d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 29 Nov 2008 03:23:26 +0000 Subject: Upgrade to waf 1.5.0. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1823 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/wscript | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/serialisation/wscript') 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') -- cgit v1.2.1