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