From 41a14d4a9a07d85b915737063102f401cf15d5c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 6 Aug 2012 19:36:46 +0000 Subject: Fix recursive building. --- wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'wscript') 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: -- cgit v1.2.1