6b61b03434
autowaf has no real shutdown functionality anyway. The automatic shutdown function that could have been called wouldn't work anyway, as it takes an argument. The only reason it doesn't fail is that the top level wscript has no shutdown handling and doesn't recurse to other scripts, so it is all dead code.
69 lines
2.3 KiB
Python
69 lines
2.3 KiB
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
# Version of this package (even if built as a child)
|
|
MAJOR = '2'
|
|
MINOR = '1'
|
|
MICRO = '1'
|
|
LIBMIDIPP_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
# major increment <=> incompatible changes
|
|
# minor increment <=> compatible changes (additions)
|
|
# micro increment <=> no interface changes
|
|
LIBMIDIPP_LIB_VERSION = '4.1.0'
|
|
|
|
libmidi_sources = [
|
|
'midi.cc',
|
|
'channel.cc',
|
|
'ipmidi_port.cc',
|
|
'parser.cc',
|
|
'port.cc',
|
|
'midnam_patch.cc',
|
|
'mmc.cc',
|
|
'mtc.cc',
|
|
]
|
|
|
|
def options(opt):
|
|
opt.add_option('--test', action='store_true', default=False, dest='build_tests',
|
|
help="Build unit tests")
|
|
|
|
def configure(conf):
|
|
autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
|
|
autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
|
|
autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
|
|
|
|
def build(bld):
|
|
# Library
|
|
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
|
obj = bld.shlib(features = 'cxx cxxshlib', source=libmidi_sources)
|
|
obj.defines = [ 'LIBMIDIPP_DLL_EXPORTS=1' ]
|
|
else:
|
|
obj = bld.stlib(features = 'cxx cxxstlib', source=libmidi_sources)
|
|
obj.cxxflags = [ bld.env['compiler_flags_dict']['pic'] ]
|
|
obj.defines = []
|
|
|
|
# everybody loves JACK
|
|
obj.export_includes = ['.']
|
|
obj.includes = ['.', '../surfaces/control_protocol', '../ardour' ]
|
|
obj.name = 'libmidipp'
|
|
obj.target = 'midipp'
|
|
obj.uselib = 'GLIBMM SIGCPP XML OSX'
|
|
obj.use = 'libpbd libevoral libtemporal'
|
|
obj.vnum = LIBMIDIPP_LIB_VERSION
|
|
obj.install_path = bld.env['LIBDIR']
|
|
|
|
if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
|
|
# Unit tests
|
|
obj = bld(features = 'cxx cxxprogram')
|
|
obj.source = '''
|
|
test/MidnamTest.cpp
|
|
test/testrunner.cpp
|
|
'''
|
|
obj.includes = ['.', './src']
|
|
obj.use = 'libmidipp'
|
|
obj.uselib = 'GLIBMM SIGCPP XML OSX CPPUNIT'
|
|
obj.target = 'run-tests'
|
|
obj.name = 'libmidipp-tests'
|
|
obj.install_path = ''
|