From bdfc77e8cd8a586e535f5eab109dd0411e0554a0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 21 Aug 2011 05:00:54 +0000 Subject: Preliminary support for Jack Session and LV2 Persist. Real command line argument support. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3441 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index d9a7ec0..3d066cf 100644 --- a/wscript +++ b/wscript @@ -22,6 +22,7 @@ out = 'build' def options(opt): autowaf.set_options(opt) opt.load('compiler_c') + opt.load('compiler_cxx') opt.add_option('--no-jack-session', action='store_true', default=False, dest='no_jack_session', help="Do not build JACK session support") @@ -31,10 +32,13 @@ def configure(conf): autowaf.configure(conf) autowaf.display_header('Jalv Configuration') conf.load('compiler_c') + conf.load('compiler_cxx') autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE', mandatory=True) autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.4.0', mandatory=True) + autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', + atleast_version='0.4.5', mandatory=True) autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL', atleast_version='0.4.0', mandatory=True) autowaf.check_pkg(conf, 'jack', uselib_store='JACK', @@ -65,7 +69,7 @@ def configure(conf): print('') def build(bld): - libs = 'LILV SUIL JACK' + libs = 'LILV SUIL JACK SERD' source = 'src/jalv.c src/symap.c src/persist.c' -- cgit v1.2.1