aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-02-08 05:18:10 +0000
committerDavid Robillard <d@drobilla.net>2012-02-08 05:18:10 +0000
commit1ff807773c014b969c2f2dfad0b5a82cd0ee55d8 (patch)
treeadf953544ee8347a69dd9aa146883874edb0e6ba /plugins/eg-sampler.lv2/wscript
parent1f8a65dc5a5b151bd82e92830a59d2e82f9d8b15 (diff)
downloadlv2-1ff807773c014b969c2f2dfad0b5a82cd0ee55d8.tar.xz
Build example plugins as part of whole tree build (against included headers).
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r--plugins/eg-sampler.lv2/wscript26
1 files changed, 17 insertions, 9 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript
index 0e93cf3..fae6eff 100644
--- a/plugins/eg-sampler.lv2/wscript
+++ b/plugins/eg-sampler.lv2/wscript
@@ -22,13 +22,15 @@ def configure(conf):
autowaf.configure(conf)
autowaf.display_header('Sampler Configuration')
- 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-state',
- uselib_store='LV2_STATE')
+ 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-state',
+ uselib_store='LV2_STATE')
+
autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE',
atleast_version='1.0.0', mandatory=True)
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',
@@ -63,6 +65,10 @@ def build(bld):
penv = bld.env.derive()
penv['cshlib_PATTERN'] = bld.env['pluginlib_PATTERN']
+ include = None
+ if autowaf.is_child:
+ include = '../..'
+
# Build plugin library
obj = bld(features = 'c cshlib',
env = penv,
@@ -70,7 +76,8 @@ def build(bld):
name = 'sampler',
target = '%s/sampler' % bundle,
install_path = '${LV2DIR}/%s' % bundle,
- use = 'SNDFILE')
+ use = 'SNDFILE',
+ include = include)
# Build UI library
if bld.is_defined('HAVE_GTK2'):
@@ -80,5 +87,6 @@ def build(bld):
name = 'sampler_ui',
target = '%s/sampler_ui' % bundle,
install_path = '${LV2DIR}/%s' % bundle,
- use = 'GTK2')
+ use = 'GTK2',
+ include = include)