aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-scope.lv2/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-20 19:14:02 +0200
committerDavid Robillard <d@drobilla.net>2019-04-21 13:49:25 +0200
commite103a630847a401523074ce1023134f09668519b (patch)
tree49536f4d7a2bcfcae131a131fa3dd9b59724373a /plugins/eg-scope.lv2/wscript
parentb51e78a095c116214f257153af3a7c7bc6555e33 (diff)
downloadlv2-e103a630847a401523074ce1023134f09668519b.tar.xz
Fix building within a recursive project
Diffstat (limited to 'plugins/eg-scope.lv2/wscript')
-rw-r--r--plugins/eg-scope.lv2/wscript15
1 files changed, 3 insertions, 12 deletions
diff --git a/plugins/eg-scope.lv2/wscript b/plugins/eg-scope.lv2/wscript
index 76fece7..ca3413d 100644
--- a/plugins/eg-scope.lv2/wscript
+++ b/plugins/eg-scope.lv2/wscript
@@ -20,9 +20,7 @@ def configure(conf):
conf.load('lv2', cache=True)
conf.load('autowaf', cache=True)
- if not autowaf.is_child():
- autowaf.check_pkg(conf, 'lv2', atleast_version='1.2.1', uselib_store='LV2')
-
+ autowaf.check_pkg(conf, 'lv2', atleast_version='1.2.1', uselib_store='LV2')
autowaf.check_pkg(conf, 'cairo', uselib_store='CAIRO',
atleast_version='1.8.10', mandatory=True)
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',
@@ -43,19 +41,13 @@ def build(bld):
install_path = '${LV2DIR}/%s' % bundle,
LIB_EXT = module_ext)
- # Use LV2 headers from parent directory if building as a sub-project
- includes = ['.']
- if autowaf.is_child:
- includes += ['../..']
-
# Build plugin library
obj = bld(features = 'c cshlib',
source = 'examploscope.c',
name = 'examploscope',
target = '%s/examploscope' % bundle,
install_path = '${LV2DIR}/%s' % bundle,
- use = 'LV2',
- includes = includes)
+ use = 'LV2')
obj.env.cshlib_PATTERN = module_pat
# Build UI library
@@ -65,6 +57,5 @@ def build(bld):
name = 'examploscope_ui',
target = '%s/examploscope_ui' % bundle,
install_path = '${LV2DIR}/%s' % bundle,
- use = 'GTK2 CAIRO LV2',
- includes = includes)
+ use = 'GTK2 CAIRO LV2')
obj.env.cshlib_PATTERN = module_pat