2015-11-24 14:17:25 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
def options(opt):
|
2022-01-25 17:43:36 +01:00
|
|
|
pass
|
2015-11-24 14:17:25 -06:00
|
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 22:09:13 +01:00
|
|
|
pass
|
2015-11-24 14:17:25 -06:00
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
|
|
|
obj.source = '''
|
2015-11-24 18:00:11 -05:00
|
|
|
faderport.cc
|
2015-11-24 20:12:01 -05:00
|
|
|
gui.cc
|
2015-11-24 14:17:25 -06:00
|
|
|
faderport_interface.cc
|
2015-11-29 17:52:42 +01:00
|
|
|
operations.cc
|
2015-11-24 14:17:25 -06:00
|
|
|
'''
|
|
|
|
|
obj.defines = [ 'PACKAGE="ardour_faderport"' ]
|
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2022-11-19 00:07:22 +01:00
|
|
|
obj.includes = [ '.', './faderport']
|
2015-11-24 14:17:25 -06:00
|
|
|
obj.name = 'libardour_faderport'
|
|
|
|
|
obj.target = 'ardour_faderport'
|
2025-07-06 15:15:59 +02:00
|
|
|
obj.uselib = 'XML OSX PANGOMM GLIBMM GIOMM'
|
|
|
|
|
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libytkmm'
|
2015-11-24 14:17:25 -06:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|