2009-02-26 19:27:14 -05:00
|
|
|
#!/usr/bin/env python
|
2009-02-26 23:40:44 -05:00
|
|
|
import os
|
2009-02-26 19:27:14 -05:00
|
|
|
|
2023-08-23 07:27:21 -04:00
|
|
|
mackie_sources = [
|
|
|
|
'button.cc',
|
|
|
|
'controls.cc',
|
|
|
|
'device_info.cc',
|
|
|
|
'device_profile.cc',
|
|
|
|
'fader.cc',
|
|
|
|
'gui.cc',
|
|
|
|
'jog.cc',
|
|
|
|
'jog_wheel.cc',
|
|
|
|
'led.cc',
|
|
|
|
'mackie_control_protocol.cc',
|
|
|
|
'mcp_buttons.cc',
|
|
|
|
'meter.cc',
|
|
|
|
'midi_byte_array.cc',
|
|
|
|
'pot.cc',
|
|
|
|
'strip.cc',
|
|
|
|
'subview.cc',
|
|
|
|
'surface.cc',
|
|
|
|
'surface_port.cc',
|
|
|
|
'types.cc'
|
|
|
|
]
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2022-01-25 11:43:36 -05:00
|
|
|
pass
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 16:09:13 -05:00
|
|
|
pass
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2023-08-23 07:27:21 -04:00
|
|
|
obj.source = list(mackie_sources)
|
|
|
|
obj.source += [ 'interface.cc' ]
|
2014-01-25 13:57:28 -05:00
|
|
|
obj.defines = [ 'PACKAGE="ardour_mackie"' ]
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
|
|
obj.includes = [ '.' ]
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.name = 'libardour_mcp'
|
|
|
|
obj.target = 'ardour_mcp'
|
2023-12-13 00:45:00 -05:00
|
|
|
obj.uselib = 'XML OSX PANGOMM'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext'
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
2023-12-13 00:45:00 -05:00
|
|
|
if bld.is_defined('YTK'):
|
|
|
|
obj.use += ' libytkmm'
|
|
|
|
obj.uselib += ' GLIBMM GIOMM'
|
|
|
|
else:
|
|
|
|
obj.uselib += ' GTKMM'
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2023-12-11 21:30:27 -05:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
|
|
obj.source = list(mackie_sources)
|
|
|
|
obj.source += [ 'uf8_interface.cc' ]
|
|
|
|
obj.defines = [ 'PACKAGE="ardour_ssl_uf8"' ]
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
|
|
obj.defines += [ 'UF8' ]
|
|
|
|
obj.includes = [ '.' ]
|
|
|
|
obj.name = 'libardour_ssl_uf8'
|
|
|
|
obj.target = 'ardour_ssl_uf8'
|
2023-12-13 00:45:00 -05:00
|
|
|
obj.uselib = 'XML OSX PANGOMM'
|
2023-12-11 21:30:27 -05:00
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext'
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
2023-12-13 00:45:00 -05:00
|
|
|
if bld.is_defined('YTK'):
|
|
|
|
obj.use += ' libytkmm'
|
|
|
|
obj.uselib += ' GLIBMM GIOMM'
|
|
|
|
else:
|
|
|
|
obj.uselib += ' GTKMM'
|