diff options
author | David Robillard <d@drobilla.net> | 2008-10-18 21:33:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-10-18 21:33:59 +0000 |
commit | 2d0f699e5ddaab31e936d3c76cbc59cef487987d (patch) | |
tree | d718003782ab00dc89249eed6d370f86aa782796 /src/client | |
parent | a4876d30d938322a48537be2d29e73fb64174c0a (diff) | |
download | ingen-2d0f699e5ddaab31e936d3c76cbc59cef487987d.tar.gz ingen-2d0f699e5ddaab31e936d3c76cbc59cef487987d.tar.bz2 ingen-2d0f699e5ddaab31e936d3c76cbc59cef487987d.zip |
Lower glib/glibmm dependency to 2.14.
Fix optional parameters all over the palce because waf is retarded and sets failed check variables to ##some#stupid#name#like#this instead of false.
Portability fixes (Ingen (except GUI) and all dependencies builds on OSX).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1681 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/wscript | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/client/wscript b/src/client/wscript index 65597d0f..614ad7f9 100644 --- a/src/client/wscript +++ b/src/client/wscript @@ -28,9 +28,10 @@ def build(bld): if bld.env()['HAVE_LIBLO'] == 1: obj.source += ' OSCClientReceiver.cpp OSCEngineSender.cpp ' - obj.includes = ['.', '..', '../common'] - obj.name = 'libingen_client' - obj.target = 'ingen_client' - obj.inst_dir = 'lib/ingen' + obj.includes = ['.', '..', '../common'] + obj.name = 'libingen_client' + obj.target = 'ingen_client' + obj.inst_dir = 'lib/ingen' + obj.uselib_local = 'libingen_shared' autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM SOUP XML2 SIGCPP LIBLO SOUP') |