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