d220f477ed
Variables by these names are only used from the local wscript and when running "waf configure", which already for other reasons only can run at the top-level. These variables are thus not mandatory and not used.
34 lines
960 B
Python
34 lines
960 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = '''
|
|
generic_midi_control_protocol.cc
|
|
gmcp_gui.cc
|
|
interface.cc
|
|
midiinvokable.cc
|
|
midicontrollable.cc
|
|
midifunction.cc
|
|
midiaction.cc
|
|
'''
|
|
obj.export_includes = ['.']
|
|
obj.defines = [ 'PACKAGE="ardour_genericmidi"' ]
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
obj.includes = [ '.', './generic_midi']
|
|
obj.name = 'libardour_generic_midi'
|
|
obj.target = 'ardour_generic_midi'
|
|
obj.uselib = 'GTKMM GTK GDK XML OSX'
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext libpbd'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|