From 0da0c8f334f441261e8e113c583413a9d9122248 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 2 Oct 2008 04:30:24 +0000 Subject: Build against local libraries with uselib_local instead of CFLAGS kludges. Fix parallel building (because waf knows about lib dependencies now). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1587 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/serialisation') diff --git a/src/serialisation/wscript b/src/serialisation/wscript index e7c0c0ab..3eeccf25 100644 --- a/src/serialisation/wscript +++ b/src/serialisation/wscript @@ -1,5 +1,6 @@ #!/usr/bin/env python import Params +import autowaf def build(bld): obj = bld.create_obj('cpp', 'shlib') @@ -11,6 +12,6 @@ def build(bld): obj.includes = ['..', '../common'] obj.name = 'libingen_serialisation' obj.target = 'ingen_serialisation' - obj.uselib = 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM' obj.inst_dir = 'lib/ingen' + autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM') -- cgit v1.2.1