diff options
author | David Robillard <d@drobilla.net> | 2008-10-02 04:30:24 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-02 04:30:24 +0000 |
commit | 0da0c8f334f441261e8e113c583413a9d9122248 (patch) | |
tree | 85bec9d45b7206e27164d7a2296b17611847376e /src/client | |
parent | 2c75e89c7b5f2b42597b7d2e6ef49109eca6616c (diff) | |
download | ingen-0da0c8f334f441261e8e113c583413a9d9122248.tar.gz ingen-0da0c8f334f441261e8e113c583413a9d9122248.tar.bz2 ingen-0da0c8f334f441261e8e113c583413a9d9122248.zip |
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
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/wscript b/src/client/wscript index 319da3fb..66358799 100644 --- a/src/client/wscript +++ b/src/client/wscript @@ -1,5 +1,6 @@ #!/usr/bin/env python import Params +import autowaf def build(bld): obj = bld.create_obj('cpp', 'shlib') @@ -30,6 +31,6 @@ def build(bld): obj.includes = ['..', '../common'] obj.name = 'libingen_client' obj.target = 'ingen_client' - obj.uselib = 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM SOUP XML2 SIGCPP' obj.inst_dir = 'lib/ingen' + autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM SOUP XML2 SIGCPP') |