2023-05-07 10:21:37 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
import os
|
|
|
|
|
|
|
|
def options(opt):
|
2022-01-25 11:43:36 -05:00
|
|
|
pass
|
2023-05-07 10:21:37 -04:00
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
|
|
obj.source = '''
|
|
|
|
console1_interface.cc
|
|
|
|
console1.cc
|
|
|
|
c1_operations.cc
|
2023-05-12 17:17:09 -04:00
|
|
|
c1_plugin_operations.cc
|
2023-05-07 10:21:37 -04:00
|
|
|
c1_gui.cc
|
|
|
|
'''
|
|
|
|
obj.defines = [ 'PACKAGE="ardour_console1"' ]
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2023-10-27 11:11:45 -04:00
|
|
|
obj.includes = [ '.', './console1']
|
2023-05-07 10:21:37 -04:00
|
|
|
obj.name = 'libardour_console1'
|
|
|
|
obj.target = 'ardour_console1'
|
2023-12-13 00:45:00 -05:00
|
|
|
obj.uselib = 'SIGCPP XML OSX'
|
2023-10-27 15:07:22 -04:00
|
|
|
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libevoral libtemporal'
|
2023-05-07 10:21:37 -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 PANGOMM'
|
|
|
|
else:
|
|
|
|
obj.uselib += ' GTKMM'
|