summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/osc/wscript')
-rw-r--r--libs/surfaces/osc/wscript41
1 files changed, 20 insertions, 21 deletions
diff --git a/libs/surfaces/osc/wscript b/libs/surfaces/osc/wscript
index a49020e528..4d62bda7bc 100644
--- a/libs/surfaces/osc/wscript
+++ b/libs/surfaces/osc/wscript
@@ -13,30 +13,29 @@ srcdir = '.'
blddir = 'build'
def set_options(opt):
- autowaf.set_options(opt)
+ autowaf.set_options(opt)
def configure(conf):
- autowaf.configure(conf)
- autowaf.check_pkg(conf, 'liblo', uselib_store='LO', linkflags='-llo')
+ autowaf.configure(conf)
+ autowaf.check_pkg(conf, 'liblo', uselib_store='LO', linkflags='-llo')
def build(bld):
- obj = bld.new_task_gen('cxx', 'shlib')
- obj.source = '''
- osc.cc
- osc_controllable.cc
- osc_route_observer.cc
- interface.cc
- '''
- obj.export_incdirs = ['.']
- obj.cxxflags = '-DPACKAGE="ardour_cp"'
- obj.includes = ['.', './osc']
- obj.name = 'libardour_osc'
- obj.target = 'ardour_osc'
- obj.uselib = ' LO '
- obj.uselib_local = 'libardour libardour_cp libpbd'
- obj.vnum = LIBARDOUR_OSC_LIB_VERSION
- obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
+ obj = bld.new_task_gen('cxx', 'shlib')
+ obj.source = '''
+ osc.cc
+ osc_controllable.cc
+ osc_route_observer.cc
+ interface.cc
+ '''
+ obj.export_incdirs = ['.']
+ obj.cxxflags = '-DPACKAGE="ardour_cp"'
+ obj.includes = ['.', './osc']
+ obj.name = 'libardour_osc'
+ obj.target = 'ardour_osc'
+ obj.uselib = ' LO '
+ obj.uselib_local = 'libardour libardour_cp libpbd'
+ obj.vnum = LIBARDOUR_OSC_LIB_VERSION
+ obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
def shutdown():
- autowaf.shutdown()
-
+ autowaf.shutdown()