diff options
author | David Robillard <d@drobilla.net> | 2011-04-22 22:01:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-22 22:01:11 +0000 |
commit | 8196711916f4f9a0f3f53dcfee45c13fe631d070 (patch) | |
tree | 0a1bd5b987c0eec64af9e1534c7aab850da6cfa7 /src/serialisation | |
parent | d1f56b3a37804ce18ed9c44fea23bd1c9e6e49d3 (diff) | |
download | ingen-8196711916f4f9a0f3f53dcfee45c13fe631d070.tar.gz ingen-8196711916f4f9a0f3f53dcfee45c13fe631d070.tar.bz2 ingen-8196711916f4f9a0f3f53dcfee45c13fe631d070.zip |
Fix Python whitespace (PEP8)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3195 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/wscript | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript index 3c72871d..7e9ddbf8 100644 --- a/src/serialisation/wscript +++ b/src/serialisation/wscript @@ -2,20 +2,19 @@ from waflib.extras import autowaf as autowaf def build(bld): - # Headers - bld.install_files('${INCLUDEDIR}/ingen/serialisation', bld.path.ant_glob('*.hpp')) - - 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' - autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL SORD') + # Headers + bld.install_files('${INCLUDEDIR}/ingen/serialisation', bld.path.ant_glob('*.hpp')) + 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' + autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL SORD') |