diff options
author | David Robillard <d@drobilla.net> | 2012-04-13 01:37:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-13 01:37:07 +0000 |
commit | 8f58cae74b8416ea4e3d3977901b8a0be6a94044 (patch) | |
tree | ced26c69cd46764a2b2f3fa7c3cf832208f973af /wscript | |
parent | e27918a39d5ed9a3bdddc51e1158c96bb90af9b5 (diff) | |
download | suil-8f58cae74b8416ea4e3d3977901b8a0be6a94044.tar.gz suil-8f58cae74b8416ea4e3d3977901b8a0be6a94044.tar.bz2 suil-8f58cae74b8416ea4e3d3977901b8a0be6a94044.zip |
Add missing LV2 build flags.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4178 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -112,7 +112,7 @@ def build(bld): includes = ['.'], install_path = module_dir, cflags = cflags) - autowaf.use_lib(bld, obj, 'GTK2 QT4') + autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2') obj = bld(features = 'cxx cxxshlib', source = 'src/qt4_in_gtk2.cpp', @@ -120,7 +120,7 @@ def build(bld): includes = ['.'], install_path = module_dir, cflags = cflags) - autowaf.use_lib(bld, obj, 'GTK2 QT4') + autowaf.use_lib(bld, obj, 'GTK2 QT4 LV2') if bld.is_defined('HAVE_GTK2'): obj = bld(features = 'c cshlib', @@ -129,7 +129,7 @@ def build(bld): includes = ['.'], install_path = module_dir, cflags = cflags) - autowaf.use_lib(bld, obj, 'GTK2') + autowaf.use_lib(bld, obj, 'GTK2 LV2') if bld.is_defined('HAVE_QT4'): obj = bld(features = 'cxx cxxshlib', @@ -138,7 +138,7 @@ def build(bld): includes = ['.'], install_path = module_dir, cflags = cflags) - autowaf.use_lib(bld, obj, 'QT4') + autowaf.use_lib(bld, obj, 'QT4 LV2') # Documentation autowaf.build_dox(bld, 'SUIL', SUIL_VERSION, top, out) |