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