mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
After patching gtk/ytk to add touch support and macOS rendering, upstream gtk+2 is no longer an option
27 lines
856 B
Python
27 lines
856 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = '''
|
|
console1_interface.cc
|
|
console1.cc
|
|
c1_operations.cc
|
|
c1_plugin_operations.cc
|
|
c1_gui.cc
|
|
'''
|
|
obj.defines = [ 'PACKAGE="ardour_console1"' ]
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
obj.includes = [ '.', './console1']
|
|
obj.name = 'libardour_console1'
|
|
obj.target = 'ardour_console1'
|
|
obj.uselib = 'SIGCPP XML OSX GLIBMM GIOMM PANGOMM'
|
|
obj.use = 'libardour libardour_cp libardour_midisurface libgtkmm2ext libpbd libevoral libtemporal libytkmm'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|