From 9d7c1e971d51561c4bb28fa1064503e5f266908f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 24 Feb 2015 09:20:22 +0000 Subject: Demodularize Parser and Serialiser. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5606 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 4164744c..39894088 100644 --- a/wscript +++ b/wscript @@ -173,7 +173,7 @@ def build(bld): opts.moduledir = opts.moduledir or bld.env.PREFIX + 'lib/ingen' # Headers - for i in ['', 'client', 'serialisation']: + for i in ['', 'client']: bld.install_files('${INCLUDEDIR}/ingen/%s' % i, bld.path.ant_glob('ingen/%s/*' % i)) @@ -183,7 +183,6 @@ def build(bld): # Modules bld.recurse('src') - bld.recurse('src/serialisation') bld.recurse('src/server') if bld.env.INGEN_BUILD_CLIENT: @@ -263,8 +262,7 @@ def test(ctx): os.environ['PATH'] = 'tests' + os.pathsep + os.getenv('PATH') os.environ['LD_LIBRARY_PATH'] = os.path.join('src') os.environ['INGEN_MODULE_PATH'] = os.pathsep.join([ - os.path.join('src', 'server') , - os.path.join('src', 'serialisation')]) + os.path.join('src', 'server')]) autowaf.pre_test(ctx, APPNAME, dirs=['.', 'src', 'tests']) for i in ctx.path.ant_glob('tests/*.ttl'): -- cgit v1.2.1