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