2009-02-27 00:27:14 +00:00
|
|
|
#!/usr/bin/env python
|
2009-02-27 04:40:44 +00:00
|
|
|
import os
|
2009-02-27 00:27:14 +00:00
|
|
|
|
2011-09-29 19:17:54 +00:00
|
|
|
def options(opt):
|
2022-01-25 17:43:36 +01:00
|
|
|
pass
|
2009-02-27 00:27:14 +00:00
|
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 22:09:13 +01:00
|
|
|
pass
|
2009-02-27 00:27:14 +00:00
|
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 19:17:54 +00:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.source = '''
|
|
|
|
|
osc.cc
|
|
|
|
|
osc_controllable.cc
|
|
|
|
|
osc_route_observer.cc
|
2016-06-05 07:25:54 -07:00
|
|
|
osc_select_observer.cc
|
2016-05-31 14:09:38 -07:00
|
|
|
osc_global_observer.cc
|
2017-01-09 18:56:22 -08:00
|
|
|
osc_cue_observer.cc
|
2011-04-22 22:15:21 +00:00
|
|
|
interface.cc
|
2016-01-14 23:33:58 +01:00
|
|
|
osc_gui.cc
|
2011-04-22 22:15:21 +00:00
|
|
|
'''
|
2014-03-01 16:58:22 -05:00
|
|
|
obj.defines = [ 'PACKAGE="ardour_osc"' ]
|
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.includes = ['.', './osc']
|
|
|
|
|
obj.name = 'libardour_osc'
|
|
|
|
|
obj.target = 'ardour_osc'
|
2023-12-13 06:45:00 +01:00
|
|
|
obj.uselib = 'LO XML OSX'
|
2016-01-14 23:33:58 +01:00
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext libpbd'
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
2023-12-13 06:45:00 +01:00
|
|
|
if bld.is_defined('YTK'):
|
|
|
|
|
obj.use += ' libytkmm'
|
|
|
|
|
obj.uselib += ' GLIBMM GIOMM PANGOMM'
|
|
|
|
|
else:
|
|
|
|
|
obj.uselib += ' GTKMM'
|