From 9b4b2b68f50db95da7d63a62a8ebee90be58da58 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 18 Feb 2015 16:45:27 -0500 Subject: Add preliminary C++ work. --- plugins/wscript | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'plugins/wscript') diff --git a/plugins/wscript b/plugins/wscript index f099183..28e5e02 100644 --- a/plugins/wscript +++ b/plugins/wscript @@ -15,7 +15,7 @@ def bld_book_src(task): filenames += [i.abspath()] literasc.gen(open(task.outputs[0].abspath(), 'w'), filenames) - + def build(bld): files = [bld.path.find_node('README.txt')] for i in ['eg-amp.lv2', @@ -29,6 +29,14 @@ def build(bld): files += bld.path.ant_glob('%s/*.ttl' % i) files += bld.path.ant_glob('%s/*.c' % i) + if bld.env.BUILD_CXX: + for i in ['eg-amppp.lv2']: + print i + files += bld.path.ant_glob('%s/*.txt' % i) + files += bld.path.ant_glob('%s/manifest.ttl*' % i) + files += bld.path.ant_glob('%s/*.ttl' % i) + files += bld.path.ant_glob('%s/*.cpp' % i) + # Compile book sources into book.txt asciidoc source bld(rule = bld_book_src, source = files, @@ -41,4 +49,3 @@ def build(bld): stylesdir, pygments_style), source = 'book.txt', target = 'book.html') - -- cgit v1.2.1