2009-02-25 12:51:42 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-02-26 23:40:44 -05:00
|
|
|
import os
|
2009-11-09 15:05:18 -05:00
|
|
|
import sys
|
2009-02-25 12:51:42 -05:00
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
2009-02-25 21:24:16 -05:00
|
|
|
MAJOR = '2'
|
|
|
|
MINOR = '1'
|
|
|
|
MICRO = '1'
|
|
|
|
LIBMIDIPP_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
|
2009-02-25 12:51:42 -05:00
|
|
|
|
|
|
|
# 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'
|
|
|
|
|
|
|
|
# Variables for 'waf dist'
|
|
|
|
APPNAME = 'libmidipp'
|
|
|
|
VERSION = LIBMIDIPP_VERSION
|
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-02-25 12:51:42 -05:00
|
|
|
|
2009-02-25 21:24:16 -05:00
|
|
|
path_prefix = 'libs/midi++2/'
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_options(opt)
|
2009-02-25 12:51:42 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-09-29 15:58:05 -04:00
|
|
|
conf.load('compiler_cxx')
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.build_version_files(path_prefix+'midi++/version.h', path_prefix+'version.cc',
|
|
|
|
'midipp', MAJOR, MINOR, MICRO)
|
|
|
|
autowaf.configure(conf)
|
|
|
|
autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.118.2')
|
|
|
|
autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
|
|
|
|
autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
|
2009-02-25 12:51:42 -05:00
|
|
|
|
2011-04-22 18:15:21 -04:00
|
|
|
# Boost headers
|
2011-09-29 15:17:54 -04:00
|
|
|
autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
|
|
|
|
autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
|
2009-02-25 12:51:42 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-04-22 18:15:21 -04:00
|
|
|
# Library
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = '''
|
|
|
|
midi.cc
|
|
|
|
channel.cc
|
2012-04-23 22:28:51 -04:00
|
|
|
ipmidi_port.cc
|
|
|
|
jack_midi_port.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
manager.cc
|
|
|
|
parser.cc
|
|
|
|
port.cc
|
|
|
|
midnam_patch.cc
|
|
|
|
mmc.cc
|
|
|
|
mtc.cc
|
|
|
|
version.cc
|
|
|
|
'''
|
|
|
|
# everybody loves JACK
|
|
|
|
obj.cxxflags = [ '-DWITH_JACK_MIDI' ]
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['.']
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.includes = ['.', '../surfaces/control_protocol']
|
|
|
|
obj.name = 'libmidipp'
|
|
|
|
obj.target = 'midipp'
|
|
|
|
obj.uselib = 'GLIBMM SIGCPP XML JACK OSX'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libpbd libevoral libtimecode'
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.vnum = LIBMIDIPP_LIB_VERSION
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-25 12:51:42 -05:00
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|