diff options
author | David Robillard <d@drobilla.net> | 2011-10-21 15:50:32 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-21 15:50:32 +0000 |
commit | 4957c342b592ac1cc2c8983d1acfe957def8b3c6 (patch) | |
tree | 8872dae307c3e13f7efdabd033afd548e5351163 /src/serialisation | |
parent | bcc2b2a1032306711591ae59205b81ed67d08387 (diff) | |
download | ingen-4957c342b592ac1cc2c8983d1acfe957def8b3c6.tar.gz ingen-4957c342b592ac1cc2c8983d1acfe957def8b3c6.tar.bz2 ingen-4957c342b592ac1cc2c8983d1acfe957def8b3c6.zip |
Use modern terser waf syntax.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3556 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/wscript | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript index 1fbe8e12..dffe9ac0 100644 --- a/src/serialisation/wscript +++ b/src/serialisation/wscript @@ -2,16 +2,12 @@ from waflib.extras import autowaf as autowaf def build(bld): - obj = bld(features = 'cxx cxxshlib') - obj.source = ''' - Parser.cpp - Serialiser.cpp - serialisation.cpp - ''' - obj.export_includes = ['.'] - obj.includes = ['.', '..', '../..', '../../include'] - obj.name = 'libingen_serialisation' - obj.target = 'ingen_serialisation' - obj.install_path = '${LIBDIR}' - obj.use = 'libingen_shared' + obj = bld(features = 'cxx cxxshlib', + source = 'Parser.cpp Serialiser.cpp serialisation.cpp', + export_includes = ['../../include'], + includes = ['..', '../../include'], + name = 'libingen_serialisation', + target = 'ingen_serialisation', + install_path = '${LIBDIR}', + use = 'libingen_shared') autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE LILV RAUL SORD') |