diff options
author | David Robillard <d@drobilla.net> | 2015-02-24 09:20:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-02-24 09:20:22 +0000 |
commit | 9d7c1e971d51561c4bb28fa1064503e5f266908f (patch) | |
tree | e34b0f84c05020fea44fd7b8cfd55341aff50668 /src/serialisation/wscript | |
parent | f408b385c2795359cfacb09032089c8387b74f45 (diff) | |
download | ingen-9d7c1e971d51561c4bb28fa1064503e5f266908f.tar.gz ingen-9d7c1e971d51561c4bb28fa1064503e5f266908f.tar.bz2 ingen-9d7c1e971d51561c4bb28fa1064503e5f266908f.zip |
Demodularize Parser and Serialiser.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5606 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/wscript')
-rw-r--r-- | src/serialisation/wscript | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript deleted file mode 100644 index 82aeffd4..00000000 --- a/src/serialisation/wscript +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python -from waflib.extras import autowaf as autowaf - -def build(bld): - obj = bld(features = 'c cshlib cxx cxxshlib', - source = ['Parser.cpp', - 'Serialiser.cpp', - 'serialisation.cpp'], - export_includes = ['../..'], - includes = ['.', '../..'], - name = 'libingen_serialisation', - target = 'ingen_serialisation', - install_path = '${LIBDIR}', - use = 'libingen') - autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SERD SORD SRATOM') - - if bld.env.BUILD_TESTS: - obj = bld(features = 'c cshlib cxx cxxshlib', - source = ['Parser.cpp', - 'Serialiser.cpp', - 'serialisation.cpp'], - export_includes = ['../..'], - includes = ['.', '../..'], - name = 'libingen_serialisation_profiled', - target = 'ingen_serialisation_profiled', - install_path = '', - use = 'libingen_profiled', - lib = bld.env.INGEN_TEST_LIBS, - cxxflags = bld.env.INGEN_TEST_CXXFLAGS) - autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SERD SORD SRATOM') |