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