diff options
author | David Robillard <d@drobilla.net> | 2011-08-21 05:00:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-08-21 05:00:54 +0000 |
commit | bdfc77e8cd8a586e535f5eab109dd0411e0554a0 (patch) | |
tree | dbd5aca9ff69682c4a67e5441f024e47f0f07604 /wscript | |
parent | 6084d3995a42001b1169cc3e8d50c4b7acf0deb6 (diff) | |
download | jalv-bdfc77e8cd8a586e535f5eab109dd0411e0554a0.tar.gz jalv-bdfc77e8cd8a586e535f5eab109dd0411e0554a0.tar.bz2 jalv-bdfc77e8cd8a586e535f5eab109dd0411e0554a0.zip |
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
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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' |