add new API for retrieving port flags from backend
[ardour.git] / libs / ardour / 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 import re
7 import subprocess
8 import sys
9
10 # default state file version for this build
11 CURRENT_SESSION_FILE_VERSION = 5990
12
13 I18N_PACKAGE = 'ardour'
14
15 # Mandatory variables
16 top = '.'
17 out = 'build'
18
19 path_prefix = 'libs/ardour/'
20
21 libardour_sources = [
22         'amp.cc',
23         'analyser.cc',
24         'analysis_graph.cc',
25         'async_midi_port.cc',
26         'audio_backend.cc',
27         'audio_buffer.cc',
28         'audio_library.cc',
29         'audio_playlist.cc',
30         'audio_playlist_importer.cc',
31         'audio_playlist_source.cc',
32         'audio_port.cc',
33         'audio_region_importer.cc',
34         'audio_track.cc',
35         'audio_track_importer.cc',
36         'audioanalyser.cc',
37         'audioengine.cc',
38         'audiofile_tagger.cc',
39         'audiofilesource.cc',
40         'audioregion.cc',
41         'audiosource.cc',
42         'auditioner.cc',
43         'automatable.cc',
44         'automation.cc',
45         'automation_control.cc',
46         'automation_list.cc',
47         'automation_watch.cc',
48         'beats_samples_converter.cc',
49         'broadcast_info.cc',
50         'buffer.cc',
51         'buffer_manager.cc',
52         'buffer_set.cc',
53         'bundle.cc',
54         'butler.cc',
55         'capturing_processor.cc',
56         'chan_count.cc',
57         'chan_mapping.cc',
58         'config_text.cc',
59         'control_group.cc',
60         'control_protocol_manager.cc',
61         'cycle_timer.cc',
62         'data_type.cc',
63         'default_click.cc',
64         'debug.cc',
65         'delayline.cc',
66         'delivery.cc',
67         'directory_names.cc',
68         'disk_io.cc',
69         'disk_reader.cc',
70         'disk_writer.cc',
71         'dsp_filter.cc',
72         'ebur128_analysis.cc',
73         'element_import_handler.cc',
74         'element_importer.cc',
75         'engine_slave.cc',
76         'enums.cc',
77         'event_type_map.cc',
78         'export_channel.cc',
79         'export_channel_configuration.cc',
80         'export_failed.cc',
81         'export_filename.cc',
82         'export_format_base.cc',
83         'export_format_manager.cc',
84         'export_format_specification.cc',
85         'export_formats.cc',
86         'export_graph_builder.cc',
87         'export_handler.cc',
88         'export_preset.cc',
89         'export_profile_manager.cc',
90         'export_status.cc',
91         'export_timespan.cc',
92         'file_source.cc',
93         'filename_extensions.cc',
94         'filesystem_paths.cc',
95         'filter.cc',
96         'find_session.cc',
97         'fixed_delay.cc',
98         'fluid_synth.cc',
99         'gain_control.cc',
100         'globals.cc',
101         'graph.cc',
102         'graphnode.cc',
103         'iec1ppmdsp.cc',
104         'iec2ppmdsp.cc',
105         'import.cc',
106         'import_pt.cc',
107         'instrument_info.cc',
108         'internal_return.cc',
109         'internal_send.cc',
110         'interpolation.cc',
111         'io.cc',
112         'io_processor.cc',
113         'kmeterdsp.cc',
114         'ladspa_plugin.cc',
115         'legatize.cc',
116         'location.cc',
117         'location_importer.cc',
118         'ltc_file_reader.cc',
119         'ltc_slave.cc',
120         'lua_api.cc',
121         'luabindings.cc',
122         'luaproc.cc',
123         'luascripting.cc',
124         'meter.cc',
125         'midi_automation_list_binder.cc',
126         'midi_buffer.cc',
127         'midi_channel_filter.cc',
128         'midi_clock_slave.cc',
129         'midi_model.cc',
130         'midi_patch_manager.cc',
131         'midi_playlist.cc',
132         'midi_playlist_source.cc',
133         'midi_port.cc',
134         'midi_region.cc',
135         'midi_ring_buffer.cc',
136         'midi_scene_change.cc',
137         'midi_scene_changer.cc',
138         'midi_source.cc',
139         'midi_state_tracker.cc',
140         'midi_stretch.cc',
141         'midi_track.cc',
142         'midi_ui.cc',
143         'mididm.cc',
144         'midiport_manager.cc',
145         'mix.cc',
146         'mode.cc',
147         'monitor_control.cc',
148         'monitor_processor.cc',
149         'mtc_slave.cc',
150         'mtdm.cc',
151         'muteable.cc',
152         'mute_control.cc',
153         'mute_master.cc',
154         'note_fixer.cc',
155         'onset_detector.cc',
156         'operations.cc',
157         'pan_controllable.cc',
158         'pannable.cc',
159         'panner.cc',
160         'panner_manager.cc',
161         'panner_shell.cc',
162         'parameter_descriptor.cc',
163         'pcm_utils.cc',
164         'phase_control.cc',
165         'playlist.cc',
166         'playlist_factory.cc',
167         'playlist_source.cc',
168         'plugin.cc',
169         'plugin_insert.cc',
170         'plugin_manager.cc',
171         'polarity_processor.cc',
172         'port.cc',
173         'port_insert.cc',
174         'port_manager.cc',
175         'port_set.cc',
176         'presentation_info.cc',
177         'process_thread.cc',
178         'processor.cc',
179         'progress.cc',
180         'quantize.cc',
181         'rc_configuration.cc',
182         'readonly_control.cc',
183         'raw_midi_parser.cc',
184         'recent_sessions.cc',
185         'record_enable_control.cc',
186         'record_safe_control.cc',
187         'region_factory.cc',
188         'resampled_source.cc',
189         'region.cc',
190         'return.cc',
191         'reverse.cc',
192         'route.cc',
193         'route_graph.cc',
194         'route_group.cc',
195         'route_group_member.cc',
196         'rb_effect.cc',
197         'rt_tasklist.cc',
198         'scene_change.cc',
199         'search_paths.cc',
200         'selection.cc',
201         'send.cc',
202         'session.cc',
203         'session_butler.cc',
204         'session_click.cc',
205         'session_command.cc',
206         'session_configuration.cc',
207         'session_directory.cc',
208         'session_events.cc',
209         'session_export.cc',
210         'session_handle.cc',
211         'session_ltc.cc',
212         'session_metadata.cc',
213         'session_midi.cc',
214         'session_object.cc',
215         'session_playlists.cc',
216         'session_process.cc',
217         'session_rtevents.cc',
218         'session_state.cc',
219         'session_state_utils.cc',
220         'session_time.cc',
221         'session_transport.cc',
222         'sidechain.cc',
223         'slavable.cc',
224         'slavable_automation_control.cc',
225         'smf_source.cc',
226         'sndfile_helpers.cc',
227         'sndfileimportable.cc',
228         'sndfilesource.cc',
229         'solo_control.cc',
230         'solo_isolate_control.cc',
231         'solo_safe_control.cc',
232         'soundcloud_upload.cc',
233         'source.cc',
234         'source_factory.cc',
235         'speakers.cc',
236         'srcfilesource.cc',
237         'stripable.cc',
238         'strip_silence.cc',
239         'system_exec.cc',
240         'revision.cc',
241         'tape_file_matcher.cc',
242         'template_utils.cc',
243         'tempo.cc',
244         'tempo_map_importer.cc',
245         'thread_buffers.cc',
246         'ticker.cc',
247         'track.cc',
248         'transient_detector.cc',
249         'transform.cc',
250         'transport_master.cc',
251         'transport_master_manager.cc',
252         'transpose.cc',
253         'unknown_processor.cc',
254         'user_bundle.cc',
255         'utils.cc',
256         'vca.cc',
257         'vca_manager.cc',
258         'vumeterdsp.cc',
259         'worker.cc'
260 ]
261
262 def flac_supported():
263     cmd = subprocess.Popen ("sndfile-info testfile.flac",
264                             stdout = subprocess.PIPE,
265                             stderr = subprocess.STDOUT, shell = True)
266     out = cmd.communicate()[0].decode('utf-8');
267     return re.search ('unknown format', out) == None
268
269 def ogg_supported():
270     cmd = subprocess.Popen ("sndfile-info testfile.ogg",
271                             stdout = subprocess.PIPE,
272                             stderr = subprocess.STDOUT, shell = True)
273     out = cmd.communicate()[0].decode('utf-8');
274     return re.search ('unknown format', out) == None
275
276 def options(opt):
277     autowaf.set_options(opt)
278
279 def configure(conf):
280     conf.load('compiler_cxx')
281     conf.load('gas')
282     # we don't use hard-coded micro versions with ardour, so hard code it to zero
283     autowaf.configure(conf)
284     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
285                       atleast_version='0.3.2')
286     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO4',
287                       atleast_version='0.4.0', mandatory=False)
288     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
289     if Options.options.dist_target != 'mingw':
290         if not Options.options.no_lrdf:
291             autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
292                               atleast_version='0.4.0')
293         autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
294                           atleast_version='0.3.2')
295     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
296                       atleast_version='0.1.0')
297     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
298                       atleast_version='2.0')
299
300     if Options.options.lv2:
301         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
302                           atleast_version='1.0.0', mandatory=True)
303         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2_1_2_0',
304                           atleast_version='1.2.0', mandatory=False)
305         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2_1_10_0',
306                           atleast_version='1.10.0', mandatory=False)
307         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
308                           atleast_version='0.14.0', mandatory=True)
309         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
310                           atleast_version='0.8.0', mandatory=True)
311         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
312                           atleast_version='0.2.0', mandatory=True)
313         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
314                           atleast_version='0.14.0', mandatory=True)
315         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_16_0',
316                           atleast_version='0.16.0', mandatory=False)
317         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_19_2',
318                           atleast_version='0.19.2', mandatory=False)
319         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_21_3',
320                           atleast_version='0.21.3', mandatory=False)
321         autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
322                           atleast_version='0.6.0', mandatory=False)
323         conf.define ('LV2_SUPPORT', 1)
324
325     # non-standard LV2 extention -- TODO: add option to disable??
326     if conf.is_defined ('HAVE_LV2_1_10_0'):
327         conf.define ('LV2_EXTENDED', 1)
328
329 #    autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH',
330 #                      mandatory=False)
331     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT',
332                       atleast_version='1.12.0', mandatory=False)
333     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
334     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
335                       atleast_version='1.2.1')
336     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
337                       atleast_version='7.0.0')
338
339     # controls whether we actually use it in preference to soundtouch
340     # Note: as of 2104, soundtouch (WSOLA) has been out-of-use for years.
341     conf.define('USE_RUBBERBAND', 1)
342
343     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
344
345     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
346     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
347
348     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
349
350     if flac_supported():
351         conf.define ('HAVE_FLAC', 1)
352     if ogg_supported():
353         conf.define ('HAVE_OGG', 1)
354
355     conf.write_config_header('libardour-config.h', remove=False)
356
357     # Boost headers
358     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
359     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
360     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
361     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
362     if conf.env['WINDOWS_VST_SUPPORT'] == True and Options.options.dist_target == 'mingw':
363         conf.check(compiler='cxx',
364                    lib='gdi32',
365                    mandatory=True,
366                    uselib_store='GDI32')
367
368
369 def build(bld):
370     # Library version (UNIX style major, minor, micro)
371     # major increment <=> incompatible changes
372     # minor increment <=> compatible changes (additions)
373     # micro increment <=> no interface changes
374     LIBARDOUR_LIB_VERSION = "3.0.0"
375
376     # operate on copy to avoid adding sources twice
377     sources = list(libardour_sources)
378     if bld.is_tracks_build():
379         sources += [ 'engine_state_controller.cc' ]
380
381     # Library
382     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
383         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=sources)
384         # macros for this shared library
385         obj.defines      = [ 'LIBARDOUR_DLL_EXPORTS=1' ]
386     else:
387         obj              = bld.stlib(features = 'c cxx cstlib cxxstlib', source=sources)
388         obj.cxxflags     = [  bld.env['compiler_flags_dict']['pic'] ]
389         obj.cflags       = [ bld.env['compiler_flags_dict']['pic'] ]
390         obj.defines      = []
391
392     obj.export_includes = ['.']
393     obj.includes     = ['.', '../surfaces/control_protocol', '..']
394     obj.name         = 'libardour'
395     obj.target       = 'ardour'
396     obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID', 'LO',
397                         'SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS', 'GIOMM',
398                         'OSX','BOOST','CURL','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
399     obj.use          = ['libpbd','libmidipp','libevoral',
400                         'libaudiographer',
401                         'libtemporal',
402                         'liblua',
403                         'libptformat',
404                         'zita-resampler',
405                         ]
406     if bld.env['build_target'] != 'mingw':
407         obj.uselib += ['DL']
408     if bld.is_defined('USE_EXTERNAL_LIBS'):
409         obj.uselib.extend(['VAMPSDK', 'LIBLTC', 'LIBFLUIDSYNTH'])
410     else:
411         obj.use.extend(['librubberband', 'libltc_includes', 'libltc', 'libfluidsynth_includes', 'libfluidsynth', 'libptformat'])
412
413     obj.vnum         = LIBARDOUR_LIB_VERSION
414     obj.install_path = bld.env['LIBDIR']
415     obj.defines      += [
416         'PACKAGE="' + I18N_PACKAGE + str(bld.env['MAJOR']) + '"',
417         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
418         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
419         'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
420         'LIBARDOUR="' + bld.env['lwrcase_dirname'] + '"'
421         ]
422
423     #obj.source += ' st_stretch.cc st_pitch.cc '
424     #obj.uselib += ' SOUNDTOUCH '
425     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
426
427     if bld.is_defined('HAVE_LILV') :
428         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc']
429         obj.uselib += ['LILV']
430         if bld.is_defined('HAVE_SUIL'):
431             obj.uselib += ['SUIL']
432
433     if bld.is_defined('WINDOWS_VST_SUPPORT'):
434         obj.source += [ 'windows_vst_plugin.cc']
435         obj.includes += [ '../fst' ]
436         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
437         if bld.env['build_target'] == 'mingw':
438             obj.use += [ 'vstwin' ]
439             obj.uselib += ['GDI32']
440
441     if bld.is_defined('LXVST_SUPPORT'):
442         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc' ]
443         obj.defines += [ 'LXVST_SUPPORT' ]
444
445     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT') or bld.is_defined('MACVST_SUPPORT'):
446         obj.source += [ 'session_vst.cc', 'vst_plugin.cc', 'vst_info_file.cc', 'vst_state.cc' ]
447
448     if bld.is_defined('MACVST_SUPPORT'):
449         obj.source += [ 'mac_vst_plugin.cc', 'mac_vst_support.cc' ]
450         obj.defines += [ 'MACVST_SUPPORT' ]
451
452     if bld.is_defined('HAVE_COREAUDIO'):
453         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
454         obj.use    += ['libappleutility']
455
456     if bld.is_defined('AUDIOUNIT_SUPPORT'):
457         obj.source += [ 'audio_unit.cc' ]
458
459     avx_sources = []
460
461     if Options.options.fpu_optimization:
462         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
463             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s', ]
464             avx_sources = [ 'sse_functions_avx_linux.cc' ]
465         elif bld.env['build_target'] == 'x86_64':
466             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s', ]
467             avx_sources = [ 'sse_functions_avx_linux.cc' ]
468         elif bld.env['build_target'] == 'mingw':
469                 # usability of the 64 bit windows assembler depends on the compiler target,
470                 # not the build host, which in turn can only be inferred from the name
471                 # of the compiler.
472                 if re.search ('x86_64-w64', str(bld.env['CC'])):
473                         obj.source += [ 'sse_functions_xmm.cc' ]
474                         obj.source += [ 'sse_functions_64bit_win.s',  'sse_avx_functions_64bit_win.s' ]
475                         avx_sources = [ 'sse_functions_avx.cc' ]
476
477         if avx_sources:
478             # as long as we want to use AVX intrinsics in this file,
479             # compile it with -mavx flag - append avx flag to the existing
480             avx_cxxflags = list(bld.env['CXXFLAGS'])
481             avx_cxxflags.append (bld.env['compiler_flags_dict']['avx'])
482             avx_cxxflags.append (bld.env['compiler_flags_dict']['pic'])
483             bld(features = 'cxx',
484                 source   = avx_sources,
485                 cxxflags = avx_cxxflags,
486                 includes = [ '.' ],
487                 use = [ 'libtemporal', 'libpbd', 'libevoral', 'liblua' ],
488                 uselib = [ 'GLIBMM', 'XML' ],
489                 target   = 'sse_avx_functions')
490
491             obj.use += ['sse_avx_functions' ]
492
493     # i18n
494     if bld.is_defined('ENABLE_NLS'):
495         mo_files = bld.path.ant_glob('po/*.mo')
496         for mo in mo_files:
497             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
498             bld.install_as(os.path.join(bld.env['LOCALEDIR'], lang, 'LC_MESSAGES', I18N_PACKAGE + str(bld.env['MAJOR']) + '.mo'),
499                            mo)
500
501     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
502         # Unit tests
503         # only build these common sources once
504         testcommon              = bld(features = 'cxx')
505         testcommon.includes     = obj.includes + ['test', '../pbd', '..']
506         testcommon.source       = ['test/testrunner.cc', 'test/test_needing_session.cc',
507                                    'test/dummy_lxvst.cc', 'test/audio_region_test.cc', 'test/test_util.cc', 'test/test_ui.cc']
508         testcommon.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
509                                    'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
510         testcommon.use          = ['libpbd','libmidipp','libevoral',
511                                    'libaudiographer','libardour']
512         if bld.is_defined('USE_EXTERNAL_LIBS'):
513             testcommon.uselib.extend(['LIBLTC', 'LIBFLUIDSYNTH'])
514         else:
515             testcommon.use.extend(['libltc', 'librubberband', 'libfluidsynth'])
516         testcommon.defines      = [
517             'PACKAGE="libardour' + str(bld.env['MAJOR']) + 'test"',
518             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
519             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
520             'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
521             ]
522         testcommon.name         = 'testcommon'
523
524         if bld.env['SINGLE_TESTS']:
525             create_ardour_test_program(bld, obj.includes, 'audio_engine_test', 'test_audio_engine', ['test/audio_engine_test.cc'])
526             create_ardour_test_program(bld, obj.includes, 'automation_list_property_test', 'test_automation_list_property', ['test/automation_list_property_test.cc'])
527             create_ardour_test_program(bld, obj.includes, 'bbt', 'test_bbt', ['test/bbt_test.cc'])
528             create_ardour_test_program(bld, obj.includes, 'tempo', 'test_tempo', ['test/tempo_test.cc'])
529             create_ardour_test_program(bld, obj.includes, 'lua_script', 'test_lua_script', ['test/lua_script_test.cc'])
530             create_ardour_test_program(bld, obj.includes, 'midi_clock_slave', 'test_midi_clock_slave', ['test/midi_clock_slave_test.cc'])
531             create_ardour_test_program(bld, obj.includes, 'resampled_source', 'test_resampled_source', ['test/resampled_source_test.cc'])
532             create_ardour_test_program(bld, obj.includes, 'samplewalk_to_beats', 'test_samplewalk_to_beats', ['test/samplewalk_to_beats_test.cc'])
533             create_ardour_test_program(bld, obj.includes, 'samplepos_plus_beats', 'test_samplepos_plus_beats', ['test/samplepos_plus_beats_test.cc'])
534             create_ardour_test_program(bld, obj.includes, 'playlist_equivalent_regions', 'test_playlist_equivalent_regions', ['test/playlist_equivalent_regions_test.cc'])
535             create_ardour_test_program(bld, obj.includes, 'playlist_layering', 'test_playlist_layering', ['test/playlist_layering_test.cc'])
536             create_ardour_test_program(bld, obj.includes, 'plugins_test', 'test_plugins', ['test/plugins_test.cc'])
537             create_ardour_test_program(bld, obj.includes, 'region_naming', 'test_region_naming', ['test/region_naming_test.cc'])
538             create_ardour_test_program(bld, obj.includes, 'control_surface', 'test_control_surfaces', ['test/control_surfaces_test.cc'])
539             create_ardour_test_program(bld, obj.includes, 'mtdm_test', 'test_mtdm', ['test/mtdm_test.cc'])
540             create_ardour_test_program(bld, obj.includes, 'sha1_test', 'test_sha1', ['test/sha1_test.cc'])
541             create_ardour_test_program(bld, obj.includes, 'session_test', 'test_session', ['test/session_test.cc'])
542             create_ardour_test_program(bld, obj.includes, 'dsp_load_calculator_test', 'test_dsp_load_calculator', ['test/dsp_load_calculator_test.cc'])
543
544         test_sources  = '''
545             test/audio_engine_test.cc
546             test/automation_list_property_test.cc
547             test/bbt_test.cc
548             test/dsp_load_calculator_test.cc
549             test/tempo_test.cc
550             test/lua_script_test.cc
551             test/midi_clock_slave_test.cc
552             test/resampled_source_test.cc
553             test/samplewalk_to_beats_test.cc
554             test/samplepos_plus_beats_test.cc
555             test/playlist_equivalent_regions_test.cc
556             test/playlist_layering_test.cc
557             test/plugins_test.cc
558             test/region_naming_test.cc
559             test/control_surfaces_test.cc
560             test/mtdm_test.cc
561             test/sha1_test.cc
562             test/session_test.cc
563         '''.split()
564
565 # Tests that don't work
566 #                test/playlist_read_test.cc
567 #                test/audio_region_read_test.cc
568 #                test/combine_regions_test.cc
569 #                test/mantis_3356_test.cc
570
571         create_ardour_test_program(bld, obj.includes, 'libardour-tests', 'run-tests', test_sources)
572
573         # Utility to load and save a session
574         load_save_session = bld(features = 'cxx cxxprogram')
575         load_save_session.source = '''
576                     test/test_util.cc
577                     test/test_ui.cc
578                     test/load_save_session.cc
579                     test/dummy_lxvst.cc
580             '''.split()
581
582         load_save_session.includes  = obj.includes
583         load_save_session.includes.append ('test')
584         load_save_session.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
585                              'SAMPLERATE','XML','LRDF','COREAUDIO']
586         load_save_session.use       = ['libpbd','libmidipp','libardour']
587         load_save_session.name      = 'libardour-load-save-session'
588         load_save_session.target    = 'load-save-session'
589         load_save_session.install_path = ''
590         load_save_session.defines      = [
591             'PACKAGE="libardour' + str(bld.env['MAJOR']) + 'profile"',
592             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
593             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
594             'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
595             ]
596
597         # Profiling
598         for p in ['runpc', 'lots_of_regions', 'load_session']:
599             profilingobj = bld(features = 'cxx cxxprogram')
600             profilingobj.source = '''
601                     test/dummy_lxvst.cc
602                     test/test_util.cc
603             '''.split()
604
605             profilingobj.source.append('test/profiling/%s.cc' % p)
606
607             profilingobj.includes  = obj.includes
608             profilingobj.includes.append ('test')
609             profilingobj.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
610                              'SAMPLERATE','XML','LRDF','COREAUDIO']
611             profilingobj.use       = ['libpbd','libmidipp','libardour']
612             profilingobj.name      = 'libardour-profiling'
613             profilingobj.target    = p
614             profilingobj.install_path = ''
615             profilingobj.defines      = [
616                 'PACKAGE="libardour' + str(bld.env['MAJOR']) + 'profile"',
617                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
618                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
619                 'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
620                 ]
621
622 def create_ardour_test_program(bld, includes, name, target, sources):
623     testobj              = bld(features = 'cxx cxxprogram')
624     testobj.includes     = includes + ['test', '../pbd', '..']
625     testobj.source       = sources
626     testobj.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
627                             'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
628     testobj.use          = ['libpbd','libmidipp','libevoral',
629                             'libaudiographer','libardour','testcommon']
630     if bld.is_defined('USE_EXTERNAL_LIBS'):
631         testobj.uselib.extend(['LIBLTC', 'LIBFLUIDSYNTH'])
632     else:
633         testobj.use.extend(['libltc', 'libfluidsynth'])
634
635     testobj.name         = name
636     testobj.target       = target
637     # not sure about install path
638     testobj.install_path = bld.env['LIBDIR']
639     testobj.defines      = [
640         'PACKAGE="libardour' + str(bld.env['MAJOR']) + 'test"',
641         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
642         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
643         'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
644         ]
645
646 def shutdown():
647     autowaf.shutdown()
648
649 def i18n(bld):
650     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE + str(bld.env['MAJOR']), libardour_sources,
651                        'Paul Davis')
652
653 def i18n_pot(bld):
654     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE + str(bld.env['MAJOR']), libardour_sources,
655                        'Paul Davis')
656
657 def i18n_po(bld):
658     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE + str(bld.env['MAJOR']), libardour_sources,
659                        'Paul Davis')
660
661 def i18n_mo(bld):
662     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE + str(bld.env['MAJOR']), libardour_sources,
663                        'Paul Davis')