2015-11-24 15:17:25 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
import os
|
|
|
|
|
|
|
|
# Mandatory variables
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 16:09:13 -05:00
|
|
|
pass
|
2015-11-24 15:17:25 -05: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 15:17:25 -05:00
|
|
|
faderport_interface.cc
|
2015-11-29 11:52:42 -05:00
|
|
|
operations.cc
|
2015-11-24 15:17:25 -05:00
|
|
|
'''
|
|
|
|
obj.defines = [ 'PACKAGE="ardour_faderport"' ]
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2022-11-18 18:07:22 -05:00
|
|
|
obj.includes = [ '.', './faderport']
|
2015-11-24 15:17:25 -05:00
|
|
|
obj.name = 'libardour_faderport'
|
|
|
|
obj.target = 'ardour_faderport'
|
2020-01-20 22:35:40 -05:00
|
|
|
obj.uselib = 'GTKMM GTK GDK XML OSX'
|
2022-10-20 13:34:26 -04:00
|
|
|
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd'
|
2015-11-24 15:17:25 -05:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
|
|
|
|
|
|
|
def shutdown():
|
|
|
|
autowaf.shutdown()
|