diff options
author | David Robillard <d@drobilla.net> | 2012-04-05 21:22:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-05 21:22:22 +0000 |
commit | f0e080e9103bfd867826ecac22f39338d5f3e829 (patch) | |
tree | e032981decded362e4da3b87dbb5a9b7c008f494 /plugins/eg-sampler.lv2/wscript | |
parent | 17c6df0bc3043c57d2c02c58284ec4794f656b3c (diff) | |
download | lv2-f0e080e9103bfd867826ecac22f39338d5f3e829.tar.xz |
Twiddle log extension class hierarchy a bit, and all log:Trace level.
Use log extension in eg-sample if available.
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r-- | plugins/eg-sampler.lv2/wscript | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript index dfbfdfc..7b5c7ad 100644 --- a/plugins/eg-sampler.lv2/wscript +++ b/plugins/eg-sampler.lv2/wscript @@ -22,17 +22,7 @@ def configure(conf): autowaf.display_header('Sampler Configuration') if not autowaf.is_child(): - autowaf.check_pkg(conf, 'lv2core', uselib_store='LV2CORE') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-urid', - uselib_store='LV2_URID') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-atom', - uselib_store='LV2_ATOM') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-patch', - uselib_store='LV2_PATCH') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-state', - uselib_store='LV2_STATE') - autowaf.check_pkg(conf, 'lv2-lv2plug.in-ns-ext-worker', - uselib_store='LV2_WORKER') + autowaf.check_pkg(conf, 'lv2', atleast_version='0.2.0', uselib_store='LV2') autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.0', mandatory=True) @@ -86,7 +76,7 @@ def build(bld): name = 'sampler', target = '%s/sampler' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'SNDFILE LV2CORE LV2_URID LV2_ATOM LV2_STATE LV2_PATCH LV2_WORKER', + use = 'SNDFILE LV2', includes = includes) # Build UI library @@ -97,6 +87,6 @@ def build(bld): name = 'sampler_ui', target = '%s/sampler_ui' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'GTK2 LV2CORE LV2_URID LV2_ATOM LV2_PATCH', + use = 'GTK2 LV2', includes = includes) |