diff options
-rw-r--r-- | wscript | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -279,9 +279,6 @@ def build(bld): for i in bld.env.LV2_BUILD: bld.recurse(i) - if bld.env.BUILD_BOOK: - bld.recurse('plugins') - # Install lv2specgen bld.install_files('${DATADIR}/lv2specgen/', ['lv2specgen/style.css', @@ -395,6 +392,10 @@ def build(bld): target = 'build-test', install_path = None) + if bld.env.BUILD_BOOK: + # Build "Programming LV2 Plugins" book from plugin examples + bld.recurse('plugins') + def lint(ctx): for i in ctx.path.ant_glob('lv2/**/*.h'): subprocess.call('cpplint.py --filter=+whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-build/include,-runtime/sizeof ' + i.abspath(), shell=True) |