summaryrefslogtreecommitdiffstats
path: root/src/gui/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-22 22:01:11 +0000
committerDavid Robillard <d@drobilla.net>2011-04-22 22:01:11 +0000
commit8196711916f4f9a0f3f53dcfee45c13fe631d070 (patch)
tree0a1bd5b987c0eec64af9e1534c7aab850da6cfa7 /src/gui/wscript
parentd1f56b3a37804ce18ed9c44fea23bd1c9e6e49d3 (diff)
downloadingen-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/gui/wscript')
-rw-r--r--src/gui/wscript134
1 files changed, 67 insertions, 67 deletions
diff --git a/src/gui/wscript b/src/gui/wscript
index 59682ade..cef45ccb 100644
--- a/src/gui/wscript
+++ b/src/gui/wscript
@@ -3,74 +3,74 @@ from waflib.extras import autowaf as autowaf
import waflib.Utils as Utils
def build(bld):
- # Headers
- bld.install_files('${INCLUDEDIR}/ingen/gui', bld.path.ant_glob('*.hpp'))
+ # Headers
+ bld.install_files('${INCLUDEDIR}/ingen/gui', bld.path.ant_glob('*.hpp'))
- obj = bld(features = 'cxx cxxshlib')
- obj.source = '''
- App.cpp
- BreadCrumbs.cpp
- Configuration.cpp
- ConnectWindow.cpp
- Connection.cpp
- ControlPanel.cpp
- Controls.cpp
- GladeFactory.cpp
- LoadPatchWindow.cpp
- LoadPluginWindow.cpp
- LoadRemotePatchWindow.cpp
- MessagesWindow.cpp
- NewSubpatchWindow.cpp
- NodeControlWindow.cpp
- NodeMenu.cpp
- NodeModule.cpp
- ObjectMenu.cpp
- PatchCanvas.cpp
- PatchPortModule.cpp
- PatchTreeWindow.cpp
- PatchView.cpp
- PatchWindow.cpp
- Port.cpp
- PortMenu.cpp
- PortPropertiesWindow.cpp
- PropertiesWindow.cpp
- RenameWindow.cpp
- SubpatchModule.cpp
- ThreadedLoader.cpp
- Window.cpp
- WindowFactory.cpp
- ingen_gui.cpp
- '''
+ obj = bld(features = 'cxx cxxshlib')
+ obj.source = '''
+ App.cpp
+ BreadCrumbs.cpp
+ Configuration.cpp
+ ConnectWindow.cpp
+ Connection.cpp
+ ControlPanel.cpp
+ Controls.cpp
+ GladeFactory.cpp
+ LoadPatchWindow.cpp
+ LoadPluginWindow.cpp
+ LoadRemotePatchWindow.cpp
+ MessagesWindow.cpp
+ NewSubpatchWindow.cpp
+ NodeControlWindow.cpp
+ NodeMenu.cpp
+ NodeModule.cpp
+ ObjectMenu.cpp
+ PatchCanvas.cpp
+ PatchPortModule.cpp
+ PatchTreeWindow.cpp
+ PatchView.cpp
+ PatchWindow.cpp
+ Port.cpp
+ PortMenu.cpp
+ PortPropertiesWindow.cpp
+ PropertiesWindow.cpp
+ RenameWindow.cpp
+ SubpatchModule.cpp
+ ThreadedLoader.cpp
+ Window.cpp
+ WindowFactory.cpp
+ ingen_gui.cpp
+ '''
- if bld.is_defined('HAVE_CURL'):
- obj.source += 'UploadPatchWindow.cpp'
+ if bld.is_defined('HAVE_CURL'):
+ obj.source += 'UploadPatchWindow.cpp'
- obj.export_includes = ['.']
- obj.includes = ['.', '..', '../..', '../../include', '../client', '../module']
- obj.name = 'libingen_gui'
- obj.target = 'ingen_gui'
- obj.install_path = '${LIBDIR}'
- obj.use = 'libingen_shared libingen_client libingen_serialisation'
- autowaf.use_lib(bld, obj, '''
- CURL
- FLOWCANVAS
- GLADEMM
- GLIBMM
- GNOMECANVASMM
- GTKMM
- RAUL
- SORD
- SIGCPP
- LV2CORE
- SLV2
- SOUP
- SUIL
- ''')
+ obj.export_includes = ['.']
+ obj.includes = ['.', '..', '../..', '../../include', '../client', '../module']
+ obj.name = 'libingen_gui'
+ obj.target = 'ingen_gui'
+ obj.install_path = '${LIBDIR}'
+ obj.use = 'libingen_shared libingen_client libingen_serialisation'
+ autowaf.use_lib(bld, obj, '''
+ CURL
+ FLOWCANVAS
+ GLADEMM
+ GLIBMM
+ GNOMECANVASMM
+ GTKMM
+ RAUL
+ SORD
+ SIGCPP
+ LV2CORE
+ SLV2
+ SOUP
+ SUIL
+ ''')
- # Glade XML UI definition
- bld(features = 'subst',
- source = 'ingen_gui.glade',
- target = '../../ingen_gui.glade',
- install_path = '${DATADIR}/ingen',
- chmod = Utils.O755,
- INGEN_VERSION = bld.env['INGEN_VERSION'])
+ # Glade XML UI definition
+ bld(features = 'subst',
+ source = 'ingen_gui.glade',
+ target = '../../ingen_gui.glade',
+ install_path = '${DATADIR}/ingen',
+ chmod = Utils.O755,
+ INGEN_VERSION = bld.env['INGEN_VERSION'])