diff options
author | David Robillard <d@drobilla.net> | 2012-08-06 19:36:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-06 19:36:46 +0000 |
commit | 41a14d4a9a07d85b915737063102f401cf15d5c5 (patch) | |
tree | d289031d6c6bbe2cfb3b44d6ba2aae9a1564bca3 /wscript | |
parent | 99e626faf5667e3bd5501ef4642b8581c7eff9d6 (diff) | |
download | lv2-41a14d4a9a07d85b915737063102f401cf15d5c5.tar.xz |
Fix recursive building.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |