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.
30 lines
787 B
Python
30 lines
787 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):
|
|
# Generic MIDI
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = '''
|
|
generic_midi_control_protocol.cc
|
|
interface.cc
|
|
midicontrollable.cc
|
|
'''
|
|
obj.defines = [ 'PACKAGE="ardour_frontier"' ]
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
|
obj.includes = ['.', './generic_midi']
|
|
obj.name = 'libgeneric_midi'
|
|
obj.target = 'generic_midi'
|
|
obj.uselib = 'XML OSX'
|
|
obj.use = 'libardour libardourcp'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|