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