aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-06 19:36:46 +0000
committerDavid Robillard <d@drobilla.net>2012-08-06 19:36:46 +0000
commit41a14d4a9a07d85b915737063102f401cf15d5c5 (patch)
treed289031d6c6bbe2cfb3b44d6ba2aae9a1564bca3 /wscript
parent99e626faf5667e3bd5501ef4642b8581c7eff9d6 (diff)
downloadlv2-41a14d4a9a07d85b915737063102f401cf15d5c5.tar.xz
Fix recursive building.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index 1604bf3..709bdef 100644
--- a/wscript
+++ b/wscript
@@ -42,8 +42,6 @@ def configure(conf):
Options.options.no_plugins = True
autowaf.configure(conf)
- conf.recurse('lv2/lv2plug.in/ns/lv2core')
-
if conf.env['MSVC_COMPILER']:
conf.env.append_unique('CFLAGS', ['-TP', '-MD'])
else:
@@ -61,6 +59,10 @@ def configure(conf):
if conf.env['BUILD_TESTS'] and not conf.is_defined('HAVE_GCOV'):
conf.check_cc(lib='gcov', define_name='HAVE_GCOV', mandatory=False)
+ autowaf.set_recursive()
+
+ conf.recurse('lv2/lv2plug.in/ns/lv2core')
+
if conf.env['BUILD_PLUGINS']:
for i in conf.path.ant_glob('plugins/*', dir=True):
try: