From 8196711916f4f9a0f3f53dcfee45c13fe631d070 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 22 Apr 2011 22:01:11 +0000 Subject: Fix Python whitespace (PEP8) git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3195 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/wscript | 63 +++++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 32 deletions(-) (limited to 'src/client/wscript') diff --git a/src/client/wscript b/src/client/wscript index bc771d2c..be1e64f1 100644 --- a/src/client/wscript +++ b/src/client/wscript @@ -2,39 +2,38 @@ from waflib.extras import autowaf as autowaf def build(bld): - # Headers - bld.install_files('${INCLUDEDIR}/ingen/client', bld.path.ant_glob('*.hpp')) + # Headers + bld.install_files('${INCLUDEDIR}/ingen/client', bld.path.ant_glob('*.hpp')) - obj = bld(features = 'cxx cxxshlib') - obj.source = ''' - ClientStore.cpp - NodeModel.cpp - ObjectModel.cpp - PatchModel.cpp - PluginModel.cpp - PluginUI.cpp - PortModel.cpp - ThreadedSigClientInterface.cpp - ingen_client.cpp - ''' + obj = bld(features = 'cxx cxxshlib') + obj.source = ''' + ClientStore.cpp + NodeModel.cpp + ObjectModel.cpp + PatchModel.cpp + PluginModel.cpp + PluginUI.cpp + PortModel.cpp + ThreadedSigClientInterface.cpp + ingen_client.cpp + ''' - if bld.is_defined('HAVE_SOUP'): - obj.source += ''' - HTTPClientReceiver.cpp - HTTPEngineSender.cpp - ''' + if bld.is_defined('HAVE_SOUP'): + obj.source += ''' + HTTPClientReceiver.cpp + HTTPEngineSender.cpp + ''' - if bld.is_defined('HAVE_LIBLO'): - obj.source += ''' - OSCClientReceiver.cpp - OSCEngineSender.cpp - ''' - - obj.includes = ['.', '..', '../..', '../../include'] - obj.export_includes = ['.'] - obj.name = 'libingen_client' - obj.target = 'ingen_client' - obj.install_path = '${LIBDIR}' - obj.use = 'libingen_shared' - autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 SUIL RAUL SORD SOUP SIGCPP LIBLO SOUP') + if bld.is_defined('HAVE_LIBLO'): + obj.source += ''' + OSCClientReceiver.cpp + OSCEngineSender.cpp + ''' + obj.includes = ['.', '..', '../..', '../../include'] + obj.export_includes = ['.'] + obj.name = 'libingen_client' + obj.target = 'ingen_client' + obj.install_path = '${LIBDIR}' + obj.use = 'libingen_shared' + autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 SUIL RAUL SORD SOUP SIGCPP LIBLO SOUP') -- cgit v1.2.1