diff options
author | David Robillard <d@drobilla.net> | 2011-10-20 04:11:24 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-20 04:11:24 +0000 |
commit | c9321a790de52835588989ac6c032a44c5eed668 (patch) | |
tree | f938a95beca8f64fb2f0c8ce5166f547337b8bbc /wscript | |
parent | c059e981b4d563edfb19a73e48b79efab34eee86 (diff) | |
download | jalv-c9321a790de52835588989ac6c032a44c5eed668.tar.gz jalv-c9321a790de52835588989ac6c032a44c5eed668.tar.bz2 jalv-c9321a790de52835588989ac6c032a44c5eed668.zip |
Support UI resize extension.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@3552 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,7 @@ def options(opt): def configure(conf): conf.load('compiler_c') conf.load('compiler_cxx') - conf.line_just = 44 + conf.line_just = 46 autowaf.configure(conf) autowaf.display_header('Jalv Configuration') @@ -55,6 +55,8 @@ def configure(conf): uselib_store='LV2_URI_MAP') autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-persist', uselib_store='LV2_PERSIST', mandatory=False) + autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-ui-resize', + uselib_store='LV2_UI_RESIZE', mandatory=False) if not Options.options.no_jack_session: autowaf.define(conf, 'JALV_JACK_SESSION', 1) |