fix merge conflicts with audioengine
[ardour.git] / libs / ardour / wscript
1 1#!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3 from waflib import Options
4 import os
5 import re
6 import subprocess
7 import sys
8
9 # default state file version for this build
10 CURRENT_SESSION_FILE_VERSION = 3001
11
12 # Variables for 'waf dist'
13 APPNAME = 'libardour3'
14 I18N_PACKAGE = 'ardour3'
15
16 # Mandatory variables
17 top = '.'
18 out = 'build'
19
20 path_prefix = 'libs/ardour/'
21
22 libardour_sources = [
23         'amp.cc',
24         'analyser.cc',
25         'async_midi_port.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         'backend_search_path.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         'configuration.cc',
60         'config_text.cc',
61         'control_protocol_manager.cc',
62         'control_protocol_search_path.cc',
63         'cycle_timer.cc',
64         'data_type.cc',
65         'default_click.cc',
66         'debug.cc',
67         'delivery.cc',
68         'directory_names.cc',
69         'diskstream.cc',
70         'element_import_handler.cc',
71         'element_importer.cc',
72         'enums.cc',
73         'event_type_map.cc',
74         'export_channel.cc',
75         'export_channel_configuration.cc',
76         'export_failed.cc',
77         'export_filename.cc',
78         'export_format_base.cc',
79         'export_format_manager.cc',
80         'export_format_specification.cc',
81         'export_formats.cc',
82         'export_formats_search_path.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         'globals.cc',
95         'graph.cc',
96         'graphnode.cc',
97         'iec1ppmdsp.cc',
98         'iec2ppmdsp.cc',
99         'import.cc',
100         'instrument_info.cc',
101         'internal_return.cc',
102         'internal_send.cc',
103         'interpolation.cc',
104         'io.cc',
105         'io_processor.cc',
106         'jack_slave.cc',
107         'kmeterdsp.cc',
108         'ladspa_plugin.cc',
109         'location.cc',
110         'location_importer.cc',
111         'ltc_slave.cc',
112         'lv2_bundled_search_path.cc',
113         'meter.cc',
114         'midi_automation_list_binder.cc',
115         'midi_buffer.cc',
116         'midi_clock_slave.cc',
117         'midi_diskstream.cc',
118         'midi_model.cc',
119         'midi_patch_manager.cc',
120         'midi_patch_search_path.cc',
121         'midi_playlist.cc',
122         'midi_playlist_source.cc',
123         'midi_port.cc',
124         'midi_region.cc',
125         'midi_ring_buffer.cc',
126         'midi_source.cc',
127         'midi_state_tracker.cc',
128         'midi_stretch.cc',
129         'midi_track.cc',
130         'midi_ui.cc',
131         'midiport_manager.cc',
132         'mix.cc',
133         'monitor_processor.cc',
134         'mtc_slave.cc',
135         'mtdm.cc',
136         'mute_master.cc',
137         'onset_detector.cc',
138         'operations.cc',
139         'pan_controllable.cc',
140         'pannable.cc',
141         'panner.cc',
142         'panner_manager.cc',
143         'panner_search_path.cc',
144         'panner_shell.cc',
145         'pcm_utils.cc',
146         'pi_controller.cc',
147         'playlist.cc',
148         'playlist_factory.cc',
149         'playlist_source.cc',
150         'plugin.cc',
151         'plugin_insert.cc',
152         'plugin_manager.cc',
153         'port.cc',
154         'port_insert.cc',
155         'port_manager.cc',
156         'port_set.cc',
157         'process_thread.cc',
158         'processor.cc',
159         'progress.cc',
160         'quantize.cc',
161         'rc_configuration.cc',
162         'recent_sessions.cc',
163         'region_factory.cc',
164         'resampled_source.cc',
165         'region.cc',
166         'return.cc',
167         'reverse.cc',
168         'route.cc',
169         'route_graph.cc',
170         'route_group.cc',
171         'route_group_member.cc',
172         'rb_effect.cc',
173         'send.cc',
174         'session.cc',
175         'session_butler.cc',
176         'session_click.cc',
177         'session_command.cc',
178         'session_configuration.cc',
179         'session_directory.cc',
180         'session_events.cc',
181         'session_export.cc',
182         'session_handle.cc',
183         'session_jack.cc',
184         'session_ltc.cc',
185         'session_metadata.cc',
186         'session_midi.cc',
187         'session_object.cc',
188         'session_playlists.cc',
189         'session_process.cc',
190         'session_rtevents.cc',
191         'session_state.cc',
192         'session_state_utils.cc',
193         'session_time.cc',
194         'session_transport.cc',
195         'slave.cc',
196         'smf_source.cc',
197         'sndfile_helpers.cc',
198         'sndfileimportable.cc',
199         'sndfilesource.cc',
200         'source.cc',
201         'source_factory.cc',
202         'speakers.cc',
203         'strip_silence.cc',
204         'revision.cc',
205         'tape_file_matcher.cc',
206         'template_utils.cc',
207         'tempo.cc',
208         'tempo_map_importer.cc',
209         'thread_buffers.cc',
210         'ticker.cc',
211         'track.cc',
212         'transient_detector.cc',
213         'unknown_processor.cc',
214         'user_bundle.cc',
215         'utils.cc',
216         'version.cc',
217         'vumeterdsp.cc',
218         'worker.cc'
219 ]
220
221 def flac_supported():
222     cmd = subprocess.Popen ("sndfile-info testfile.flac",
223                             stdout = subprocess.PIPE,
224                             stderr = subprocess.STDOUT, shell = True)
225     out = cmd.communicate()[0].decode('utf-8');
226     return re.search ('unknown format', out) == None
227
228 def ogg_supported():
229     cmd = subprocess.Popen ("sndfile-info testfile.ogg",
230                             stdout = subprocess.PIPE,
231                             stderr = subprocess.STDOUT, shell = True)
232     out = cmd.communicate()[0].decode('utf-8');
233     return re.search ('unknown format', out) == None
234
235 def options(opt):
236     autowaf.set_options(opt)
237
238 def configure(conf):
239     conf.load('compiler_cxx')
240     conf.load('gas')
241     # we don't use hard-coded micro versions with ardour, so hard code it to zero
242     autowaf.build_version_files(
243         path_prefix + 'ardour/version.h',
244         path_prefix + 'version.cc',
245         'libardour3', conf.env['MAJOR'], conf.env['MINOR'], 0)
246     autowaf.configure(conf)
247     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
248                       atleast_version='0.3.2')
249     autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
250                       atleast_version='0.118.2')
251     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
252     autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
253                       atleast_version='0.4.0')
254     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
255                       atleast_version='0.1.0')
256     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
257                       atleast_version='2.0')
258
259     if re.search ("linux", sys.platform) != None:
260         autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
261
262     if Options.options.lv2:
263         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
264                           atleast_version='1.0.0', mandatory=True)
265         autowaf.check_pkg(conf, 'lv2', uselib_store='NEW_LV2',
266                           atleast_version='1.0.15', mandatory=False)
267         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
268                           atleast_version='0.14.0', mandatory=True)
269         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
270                           atleast_version='0.8.0', mandatory=True)
271         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
272                           atleast_version='0.2.0', mandatory=True)
273         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
274                           atleast_version='0.14.0', mandatory=True)
275         autowaf.check_pkg(conf, 'lilv-0', uselib_store='NEW_LILV',
276                           atleast_version='0.15.0', mandatory=False)
277         autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
278                           atleast_version='0.6.0', mandatory=False)
279         conf.define ('LV2_SUPPORT', 1)
280
281 #    autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH',
282 #                      mandatory=False)
283     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT',
284                       atleast_version='1.12.0', mandatory=False)
285     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
286     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
287                       atleast_version='1.2.1')
288     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
289                       atleast_version='7.0.0')
290
291     # we don't try to detect this, since its part of our source tree
292
293     conf.define('HAVE_RUBBERBAND', 1) # controls whether we think we have it
294     conf.define('USE_RUBBERBAND', 1)  # controls whether we actually use it
295
296     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
297
298     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
299     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
300
301     conf.check(header_name='jack/session.h', uselib = [ 'JACK' ],
302                define_name='HAVE_JACK_SESSION')
303
304     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
305
306     conf.check_cc(fragment = '''
307 #include <jack/jack.h>
308 void callback(jack_status_t code, const char* reason, void* arg) { return; }
309 int main(int argc, char **argv) {
310     jack_client_t* c;
311     jack_on_info_shutdown(c, callback, (void*) 0);
312     return 0;
313 }''',
314                   uselib= [ 'JACK' ],
315                   msg = 'Checking for jack_on_info_shutdown',
316                   define_name = 'HAVE_JACK_ON_INFO_SHUTDOWN',
317                   okmsg = 'present')
318
319     missing_jack_message = 'missing - a version of JACK that supports jack_port_set_latency_range() is required to compile Ardour3.'
320
321     conf.check_cc(fragment = '''
322 #include <jack/jack.h>
323 int main(int argc, char **argv) {
324     jack_port_t* p;
325     jack_latency_range_t r;
326     jack_port_set_latency_range(p, JackCaptureLatency, &r);
327     return 0;
328 }''',
329                   uselib = [ 'JACK' ],
330                   msg = 'Checking for new JACK latency API',
331                   okmsg = 'present',
332                   mandatory = True,
333                   errmsg = missing_jack_message)
334
335     conf.check_cc(fragment = '''
336 #include <jack/jack.h>
337 int main(int argc, char **argv) {
338    jack_port_type_get_buffer_size((jack_client_t*)0, "");
339    return 0;
340 }''',
341                   uselib = [ 'JACK' ],
342                   msg = 'Checking for new jack_port_type_get_buffer_size',
343                   okmsg = 'present',
344                   mandatory = True,
345                   errmsg = missing_jack_message)
346
347     conf.check_cc(fragment = '''
348 #include <jack/transport.h>
349 int main(int argc, char** argv) {
350   jack_position_t pos;
351   pos.valid & JackVideoFrameOffset;
352   return 0;
353 }''',
354                   uselib= [ 'JACK' ],
355                   msg = 'Checking for JackVideoFrameOffset',
356                   define_name = 'HAVE_JACK_VIDEO_SUPPORT',
357                   mandatory = False,
358                   okmsg = 'present')
359
360     if flac_supported():
361         conf.define ('HAVE_FLAC', 1)
362     if ogg_supported():
363         conf.define ('HAVE_OGG', 1)
364
365     conf.write_config_header('libardour-config.h', remove=False)
366
367     # Boost headers
368     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
369     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
370     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
371     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
372
373
374 def build(bld):
375     # Library version (UNIX style major, minor, micro)
376     # major increment <=> incompatible changes
377     # minor increment <=> compatible changes (additions)
378     # micro increment <=> no interface changes
379     LIBARDOUR_LIB_VERSION = "3.0.0."
380
381     # Library
382     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
383         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=libardour_sources)
384     else:
385         obj              = bld.stlib(features = 'c cxx cstlib cxxstlib', source=libardour_sources)
386         obj.cxxflags     = [ '-fPIC' ]
387         obj.cflags       = [ '-fPIC' ]
388
389     obj.export_includes = ['.']
390     obj.includes     = ['.', '../surfaces/control_protocol', '..']
391     obj.name         = 'ardour'
392     obj.target       = 'ardour'
393     obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID',
394                         'JACK','SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS',
395                         'OSX','BOOST','CURL','DL']
396     obj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
397                         'libvampplugin','libtaglib','librubberband',
398                         'libaudiographer','libltc']
399     obj.vnum         = LIBARDOUR_LIB_VERSION
400     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
401     obj.defines      = [
402         'PACKAGE="' + I18N_PACKAGE + '"',
403         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
404         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
405         'LOCALEDIR="' + os.path.join(os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
406         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"',
407         'EVORAL_MIDI_XML=1' 
408         ]
409
410     #obj.source += ' st_stretch.cc st_pitch.cc '
411     #obj.uselib += ' SOUNDTOUCH '
412     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
413
414     if bld.is_defined('HAVE_LILV') :
415         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc'] 
416         obj.uselib += ['LILV']
417         if bld.is_defined('HAVE_SUIL'):
418             obj.uselib += ['SUIL']
419
420     if bld.is_defined('WINDOWS_VST_SUPPORT'):
421         obj.source += [ 'windows_vst_plugin.cc']
422         obj.includes += [ '../fst' ]
423         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
424
425     if bld.is_defined('LXVST_SUPPORT'):
426         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc', 'linux_vst_info_file.cc' ]
427         obj.defines += [ 'LXVST_SUPPORT' ]
428
429     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
430         obj.source += [ 'session_vst.cc', 'vst_plugin.cc' ]
431
432     if bld.is_defined('HAVE_COREAUDIO'):
433         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
434         obj.use    += ['libappleutility']
435
436     if bld.is_defined('AUDIOUNIT_SUPPORT'):
437         obj.source += [ 'audio_unit.cc' ]
438
439     if Options.options.fpu_optimization:
440         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
441             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s' ]
442         elif bld.env['build_target'] == 'x86_64':
443             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
444
445     # the JACK audio backend
446
447     obj = bld.shlib (features = 'c cxx cshlib cxxshlib', 
448                      source = [ 
449             'jack_api.cc',
450             'jack_connection.cc',
451             'jack_audiobackend.cc',
452             'jack_portengine.cc',
453             'jack_utils.cc'
454             ])
455     obj.cxxflags = [ '-fPIC' ]
456     obj.name     = 'jack_audiobackend'
457     obj.target   = 'jack_audiobackend'
458     obj.uselib   = [ 'JACK' ]
459     
460     #
461     # device discovery code in the jack backend needs ALSA
462     # on Linux.
463     # 
464
465     if re.search ("linux", sys.platform) != None:
466        obj.uselib += [ 'ALSA' ]
467
468     obj.use      = [ 'ardour' ]
469     obj.vnum     = '1.0.0'
470     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
471     obj.includes = [ '.' ]
472     obj.defines = [
473         'PACKAGE="' + I18N_PACKAGE + '"',
474         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
475         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
476         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"',
477         ]
478     
479
480     # i18n
481     if bld.is_defined('ENABLE_NLS'):
482         mo_files = bld.path.ant_glob('po/*.mo')
483         for mo in mo_files:
484             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
485             bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
486                                         lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
487                            mo)
488
489     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
490         # Unit tests
491         # only build these common sources once
492         testcommon              = bld(features = 'cxx')
493         testcommon.includes     = obj.includes + ['test', '../pbd', '..']
494         testcommon.source       = ['test/test_globals.cc', 'test/testrunner.cc', 'test/test_needing_session.cc',
495                                    'test/test_common.cc', 'test/dummy_lxvst.cc', 'test/audio_region_test.cc', 'test/test_util.cc']
496         testcommon.uselib       = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
497                                    'SAMPLERATE','XML','LRDF','COREAUDIO']
498         testcommon.use          = ['libpbd','libmidipp','libevoral','libvamphost',
499                                    'libvampplugin','libtaglib','librubberband',
500                                    'libaudiographer','libltc','ardour']
501         testcommon.defines      = [
502             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
503             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
504             'LOCALEDIR="' + os.path.join(
505                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
506             'VAMP_DIR="' + os.path.join(
507                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
508             ]
509         testcommon.name         = 'testcommon'
510
511         if bld.env['FPU_OPTIMIZATION']:
512             testcommon.source += [ 'sse_functions_xmm.cc' ]
513             if (bld.env['build_target'] == 'i386'
514                 or bld.env['build_target'] == 'i686'):
515                 testcommon.source += [ 'sse_functions.s' ]
516             elif bld.env['build_target'] == 'x86_64':
517                 testcommon.source += [ 'sse_functions_64bit.s' ]
518
519         if bld.env['SINGLE_TESTS']:
520             create_ardour_test_program(bld, obj.includes, 'automation_list_property_test', 'test_automation_list_property', ['test/automation_list_property_test.cc'])
521             create_ardour_test_program(bld, obj.includes, 'bbt', 'test_bbt', ['test/bbt_test.cc'])
522             create_ardour_test_program(bld, obj.includes, 'tempo', 'test_tempo', ['test/tempo_test.cc'])
523             create_ardour_test_program(bld, obj.includes, 'interpolation', 'test_interpolation', ['test/interpolation_test.cc'])
524             create_ardour_test_program(bld, obj.includes, 'midi_clock_slave', 'test_midi_clock_slave', ['test/midi_clock_slave_test.cc'])
525             create_ardour_test_program(bld, obj.includes, 'resampled_source', 'test_resampled_source', ['test/resampled_source_test.cc'])
526             create_ardour_test_program(bld, obj.includes, 'framewalk_to_beats', 'test_framewalk_to_beats', ['test/framewalk_to_beats_test.cc'])
527             create_ardour_test_program(bld, obj.includes, 'framepos_plus_beats', 'test_framepos_plus_beats', ['test/framepos_plus_beats_test.cc'])
528             create_ardour_test_program(bld, obj.includes, 'framepos_minus_beats', 'test_framepos_minus_beats', ['test/framepos_minus_beats_test.cc'])
529             create_ardour_test_program(bld, obj.includes, 'playlist_equivalent_regions', 'test_playlist_equivalent_regions', ['test/playlist_equivalent_regions_test.cc'])
530             create_ardour_test_program(bld, obj.includes, 'playlist_layering', 'test_playlist_layering', ['test/playlist_layering_test.cc'])
531             create_ardour_test_program(bld, obj.includes, 'region_naming', 'test_region_naming', ['test/region_naming_test.cc'])
532             create_ardour_test_program(bld, obj.includes, 'control_surface', 'test_control_surfaces', ['test/control_surfaces_test.cc'])
533             create_ardour_test_program(bld, obj.includes, 'mtdm_test', 'test_mtdm', ['test/mtdm_test.cc'])
534             create_ardour_test_program(bld, obj.includes, 'session_test', 'test_session', ['test/session_test.cc'])
535
536         test_sources  = '''
537             test/automation_list_property_test.cc
538             test/bbt_test.cc
539             test/tempo_test.cc
540             test/interpolation_test.cc
541             test/midi_clock_slave_test.cc
542             test/resampled_source_test.cc
543             test/framewalk_to_beats_test.cc
544             test/framepos_plus_beats_test.cc
545             test/framepos_minus_beats_test.cc
546             test/playlist_equivalent_regions_test.cc
547             test/playlist_layering_test.cc
548             test/region_naming_test.cc
549             test/control_surfaces_test.cc
550             test/mtdm_test.cc
551             test/session_test.cc
552         '''.split()
553
554 # Tests that don't work
555 #                test/playlist_read_test.cc
556 #                test/audio_region_read_test.cc
557 #                test/combine_regions_test.cc
558 #                test/mantis_3356_test.cc
559
560         create_ardour_test_program(bld, obj.includes, 'libardour-tests', 'run-tests', test_sources)
561
562         # Tester to just load a session
563         session_load_tester = bld(features = 'cxx cxxprogram')
564         session_load_tester.source = '''
565                     test/test_util.cc
566                     test/load_session.cc
567                     test/dummy_lxvst.cc
568             '''.split()
569
570         session_load_tester.includes  = obj.includes
571         session_load_tester.includes.append ('test')
572         session_load_tester.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
573                              'SAMPLERATE','XML','LRDF','COREAUDIO']
574         session_load_tester.use       = ['libpbd','libmidipp','ardour']
575         session_load_tester.name      = 'libardour-session-load-tester'
576         session_load_tester.target    = 'load-session'
577         session_load_tester.install_path = ''
578         session_load_tester.defines      = [
579             'PACKAGE="libardour3profile"',
580             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
581             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
582             'LOCALEDIR="' + os.path.join(
583                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
584             'VAMP_DIR="' + os.path.join(
585                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
586             ]
587         if bld.env['FPU_OPTIMIZATION']:
588             session_load_tester.source += [ 'sse_functions_xmm.cc' ]
589             if (bld.env['build_target'] == 'i386'
590                 or bld.env['build_target'] == 'i686'):
591                 session_load_tester.source += [ 'sse_functions.s' ]
592             elif bld.env['build_target'] == 'x86_64':
593                 session_load_tester.source += [ 'sse_functions_64bit.s' ]
594
595         # Profiling
596         for p in ['runpc', 'lots_of_regions', 'load_session']:
597             profilingobj = bld(features = 'cxx cxxprogram')
598             profilingobj.source = '''
599                     test/dummy_lxvst.cc
600                     test/test_util.cc
601             '''.split()
602
603             profilingobj.source.append('test/profiling/%s.cc' % p)
604
605             profilingobj.includes  = obj.includes
606             profilingobj.includes.append ('test')
607             profilingobj.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
608                              'SAMPLERATE','XML','LRDF','COREAUDIO']
609             profilingobj.use       = ['libpbd','libmidipp','ardour']
610             profilingobj.name      = 'libardour-profiling'
611             profilingobj.target    = p
612             profilingobj.install_path = ''
613             profilingobj.defines      = [
614                 'PACKAGE="libardour3profile"',
615                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
616                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
617                 'LOCALEDIR="' + os.path.join(
618                     os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
619                 'VAMP_DIR="' + os.path.join(
620                     os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
621                 ]
622             if bld.env['FPU_OPTIMIZATION']:
623                 profilingobj.source += [ 'sse_functions_xmm.cc' ]
624                 if (bld.env['build_target'] == 'i386'
625                     or bld.env['build_target'] == 'i686'):
626                     profilingobj.source += [ 'sse_functions.s' ]
627                 elif bld.env['build_target'] == 'x86_64':
628                     profilingobj.source += [ 'sse_functions_64bit.s' ]
629
630 def create_ardour_test_program(bld, includes, name, target, sources):
631     testobj              = bld(features = 'cxx cxxprogram')
632     testobj.includes     = includes + ['test', '../pbd', '..']
633     testobj.source       = sources
634     testobj.uselib       = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
635                             'SAMPLERATE','XML','LRDF','COREAUDIO']
636     testobj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
637                             'libvampplugin','libtaglib','librubberband',
638                             'libaudiographer','libltc','ardour','testcommon']
639     testobj.name         = name
640     testobj.target       = target
641     # not sure about install path
642     testobj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
643     testobj.defines      = [
644         'PACKAGE="libardour3test"',
645         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
646         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
647         'LOCALEDIR="' + os.path.join(
648             os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
649         'VAMP_DIR="' + os.path.join(
650             os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
651         ]
652
653 def shutdown():
654     autowaf.shutdown()
655
656 def i18n(bld):
657     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
658                        'Paul Davis')
659
660 def i18n_pot(bld):
661     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
662                        'Paul Davis')
663
664 def i18n_po(bld):
665     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
666                        'Paul Davis')
667
668 def i18n_mo(bld):
669     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
670                        'Paul Davis')