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