fix conflicts after merge with master
[ardour.git] / libs / midi++2 / wscript
1 #!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3 from waflib import Options
4 import os
5 import sys
6
7 # Version of this package (even if built as a child)
8 MAJOR = '2'
9 MINOR = '1'
10 MICRO = '1'
11 LIBMIDIPP_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
12
13 # Library version (UNIX style major, minor, micro)
14 # major increment <=> incompatible changes
15 # minor increment <=> compatible changes (additions)
16 # micro increment <=> no interface changes
17 LIBMIDIPP_LIB_VERSION = '4.1.0'
18
19 # Variables for 'waf dist'
20 APPNAME = 'libmidipp'
21 VERSION = LIBMIDIPP_VERSION
22
23 # Mandatory variables
24 top = '.'
25 out = 'build'
26
27 path_prefix = 'libs/midi++2/'
28
29
30 libmidi_sources = [
31         'midi.cc',
32         'channel.cc',
33         'ipmidi_port.cc',
34         'jack_midi_port.cc',
35         'manager.cc',
36         'parser.cc',
37         'port.cc',
38         'midnam_patch.cc',
39         'mmc.cc',
40         'mtc.cc',
41         'version.cc',
42 ]
43
44 def options(opt):
45     autowaf.set_options(opt)
46     opt.add_option('--test', action='store_true', default=False, dest='build_tests',
47                     help="Build unit tests")
48
49 def configure(conf):
50     conf.load('compiler_cxx')
51     autowaf.build_version_files(path_prefix+'midi++/version.h', path_prefix+'version.cc',
52                     'midipp', MAJOR, MINOR, MICRO)
53     autowaf.configure(conf)
54     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
55     autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.118.2')
56     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
57     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
58
59     # Boost headers
60     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
61     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
62
63 def build(bld):
64     # Library
65     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
66         obj              = bld.shlib(features = 'cxx cxxshlib', source=libmidi_sources)
67     else:
68         obj              = bld.stlib(features = 'cxx cxxstlib', source=libmidi_sources)
69         obj.cxxflags = [ '-fPIC', '-DWITH_JACK_MIDI' ]
70     # everybody loves JACK
71     obj.export_includes = ['.']
72     obj.includes     = ['.', '../surfaces/control_protocol', '../ardour' ]
73     obj.name         = 'libmidipp'
74     obj.target       = 'midipp'
75     obj.uselib       = 'GLIBMM SIGCPP XML JACK OSX'
76     obj.use          = 'libpbd libevoral libtimecode'
77     obj.vnum         = LIBMIDIPP_LIB_VERSION
78     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
79
80     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'): 
81         # Unit tests
82         obj              = bld(features = 'cxx cxxprogram')
83         obj.source       = '''
84                 test/MidnamTest.cpp
85                 test/testrunner.cpp
86         '''
87         obj.includes     = ['.', './src']
88         obj.use          = 'libmidipp'
89         obj.uselib       = 'CPPUNIT XML'
90         obj.target       = 'run-tests'
91         obj.name         = 'libmidipp-tests'
92         obj.install_path = ''
93
94 def shutdown():
95     autowaf.shutdown()