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