2009-02-26 19:27:14 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-02-26 23:40:44 -05:00
|
|
|
import os
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
# micro increment <=> no interface changes
|
2009-07-22 09:51:16 -04:00
|
|
|
LIBARDOUR_MCP_LIB_VERSION = '4.1.0'
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-02-26 19:27:14 -05:00
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_options(opt)
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.configure(conf)
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = '''
|
2012-04-09 13:48:16 -04:00
|
|
|
button.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
controls.cc
|
2012-04-12 07:45:40 -04:00
|
|
|
device_info.cc
|
2012-04-17 16:41:31 -04:00
|
|
|
device_profile.cc
|
2012-04-09 13:48:16 -04:00
|
|
|
fader.cc
|
2011-05-04 05:22:11 -04:00
|
|
|
gui.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
interface.cc
|
2012-04-14 15:02:54 -04:00
|
|
|
jog.cc
|
2012-04-22 13:37:52 -04:00
|
|
|
jog_wheel.cc
|
2012-04-11 00:02:46 -04:00
|
|
|
led.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
mackie_control_protocol.cc
|
2012-04-09 13:48:16 -04:00
|
|
|
mcp_buttons.cc
|
2012-04-09 09:59:35 -04:00
|
|
|
meter.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
midi_byte_array.cc
|
2012-04-11 09:03:41 -04:00
|
|
|
pot.cc
|
2012-04-09 09:59:35 -04:00
|
|
|
strip.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
surface.cc
|
|
|
|
surface_port.cc
|
|
|
|
types.cc
|
|
|
|
'''
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['./mackie']
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.cxxflags = '-DPACKAGE="ardour_mackie"'
|
2012-04-12 10:34:03 -04:00
|
|
|
# need ../libs because some GTK2 header files require stuff there
|
|
|
|
obj.includes = ['.', '../libs']
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.name = 'libardour_mcp'
|
2013-09-03 08:33:51 -04:00
|
|
|
obj.defines = [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.target = 'ardour_mcp'
|
2011-05-04 05:22:11 -04:00
|
|
|
obj.uselib = 'GTKMM'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext'
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.vnum = LIBARDOUR_MCP_LIB_VERSION
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-26 19:27:14 -05:00
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|