mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
After patching gtk/ytk to add touch support and macOS rendering, upstream gtk+2 is no longer an option
42 lines
1.8 KiB
Python
42 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
lpxm_sources = [
|
|
'launchkey_4.cc',
|
|
'gui.cc',
|
|
]
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
autowaf.check_pkg(conf, 'pangomm-1.4', uselib_store='PANGOMM', atleast_version='1.4', mandatory=True)
|
|
autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4', mandatory=True)
|
|
|
|
|
|
def build(bld):
|
|
# obj = bld(features = 'cxx cxxshlib')
|
|
# obj.source = list(lpxm_sources)
|
|
# obj.source += [ 'launchkey_4_interface.cc' ]
|
|
# obj.defines = [ 'PACKAGE="ardour_launchkey_mini"' ]
|
|
# obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
# obj.defines += [ 'LAUNCHKEY_MINI' ]
|
|
# obj.includes = ['.', ]
|
|
# obj.name = 'libardour_launchkey_mini'
|
|
# obj.target = 'ardour_launchkey_mini'
|
|
# obj.uselib = 'CAIROMM PANGOMM USB SIGCPP XML OSX GLIBMM GIOMM'
|
|
# obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libevoral libcanvas libtemporal libytkmm'
|
|
# obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = list(lpxm_sources)
|
|
obj.source += [ 'launchkey_4_interface.cc' ]
|
|
obj.defines = [ 'PACKAGE="ardour_launchpad_x"' ]
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
obj.includes = ['.', ]
|
|
obj.name = 'libardour_launchkey_4'
|
|
obj.target = 'ardour_launchkey_4'
|
|
obj.uselib = 'CAIROMM PANGOMM USB SIGCPP XML OSX GLIBMM GIOMM'
|
|
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libevoral libcanvas libtemporal libytkmm'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|