summaryrefslogtreecommitdiff
path: root/libs/surfaces/wiimote
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-16 16:32:56 +0000
committerDavid Robillard <d@drobilla.net>2011-03-16 16:32:56 +0000
commit9850407bd9178de794a7507ad858bcdfa227c842 (patch)
treea7be155f9bc2162c9765b4923b64eb6919067c9a /libs/surfaces/wiimote
parentb9113772fe73dd72e0d6aeab1f69f3780723c882 (diff)
Indent python files with spaces as per style guide.
git-svn-id: svn://localhost/ardour2/branches/3.0@9158 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/wiimote')
-rw-r--r--libs/surfaces/wiimote/wscript32
1 files changed, 16 insertions, 16 deletions
diff --git a/libs/surfaces/wiimote/wscript b/libs/surfaces/wiimote/wscript
index edfb3ad901..8923df7015 100644
--- a/libs/surfaces/wiimote/wscript
+++ b/libs/surfaces/wiimote/wscript
@@ -13,26 +13,26 @@ srcdir = '.'
blddir = 'build'
def set_options(opt):
- autowaf.set_options(opt)
+ autowaf.set_options(opt)
def configure(conf):
- autowaf.configure(conf)
+ autowaf.configure(conf)
def build(bld):
- obj = bld.new_task_gen('cxx', 'shlib')
- obj.source = '''
- wiimote.cc
- interface.cc
- '''
- obj.export_incdirs = ['./wiimote']
- obj.cxxflags = '-DPACKAGE="ardour_wiimote"'
- obj.includes = ['.', './wiimote']
- obj.name = 'libwiimote'
- obj.target = 'wiimote'
- obj.uselib_local = 'libardour libardour_cp'
- obj.vnum = LIBARDOUR_WIIMOTE_LIB_VERSION
- obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
+ obj = bld.new_task_gen('cxx', 'shlib')
+ obj.source = '''
+ wiimote.cc
+ interface.cc
+ '''
+ obj.export_incdirs = ['./wiimote']
+ obj.cxxflags = '-DPACKAGE="ardour_wiimote"'
+ obj.includes = ['.', './wiimote']
+ obj.name = 'libwiimote'
+ obj.target = 'wiimote'
+ obj.uselib_local = 'libardour libardour_cp'
+ obj.vnum = LIBARDOUR_WIIMOTE_LIB_VERSION
+ obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
def shutdown():
- autowaf.shutdown()
+ autowaf.shutdown()