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