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