aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-07-07 23:11:33 +0000
committerDavid Robillard <d@drobilla.net>2011-07-07 23:11:33 +0000
commit273d983e26e326513cb52c925eb15cb247c22560 (patch)
treeb05aa1193141caa334be5fa56045d5841db07bae /plugins/eg-sampler.lv2/wscript
parentcf303b78414279edb2b0cae6c95471260039e806 (diff)
downloadlv2-273d983e26e326513cb52c925eb15cb247c22560.tar.xz
Add stub LV2 persist support to sampler plugin.
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r--plugins/eg-sampler.lv2/wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript
index 2957ce1..a4b6535 100644
--- a/plugins/eg-sampler.lv2/wscript
+++ b/plugins/eg-sampler.lv2/wscript
@@ -24,6 +24,9 @@ def configure(conf):
conf.load('compiler_c')
autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/lv2core/lv2.h')
+ autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/event/event-helpers.h')
+ autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/uri-map/uri-map.h')
+ autowaf.check_header(conf, 'c', 'lv2/lv2plug.in/ns/ext/persist/persist.h')
autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE',
atleast_version='1.0.0', mandatory=True)