finished merge of cairocanvas with windows and windows+cc branches
[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         'backend_search_path.cc',
50         'beats_frames_converter.cc',
51         'broadcast_info.cc',
52         'buffer.cc',
53         'buffer_manager.cc',
54         'buffer_set.cc',
55         'bundle.cc',
56         'butler.cc',
57         'capturing_processor.cc',
58         'chan_count.cc',
59         'chan_mapping.cc',
60         'configuration.cc',
61         'config_text.cc',
62         'control_protocol_manager.cc',
63         'control_protocol_search_path.cc',
64         'cycle_timer.cc',
65         'data_type.cc',
66         'default_click.cc',
67         'debug.cc',
68         'delivery.cc',
69         'directory_names.cc',
70         'diskstream.cc',
71         'element_import_handler.cc',
72         'element_importer.cc',
73         'engine_slave.cc',
74         'enums.cc',
75         'event_type_map.cc',
76         'export_channel.cc',
77         'export_channel_configuration.cc',
78         'export_failed.cc',
79         'export_filename.cc',
80         'export_format_base.cc',
81         'export_format_manager.cc',
82         'export_format_specification.cc',
83         'export_formats.cc',
84         'export_formats_search_path.cc',
85         'export_graph_builder.cc',
86         'export_handler.cc',
87         'export_preset.cc',
88         'export_profile_manager.cc',
89         'export_status.cc',
90         'export_timespan.cc',
91         'file_source.cc',
92         'filename_extensions.cc',
93         'filesystem_paths.cc',
94         'filter.cc',
95         'find_session.cc',
96         'globals.cc',
97         'graph.cc',
98         'graphnode.cc',
99         'iec1ppmdsp.cc',
100         'iec2ppmdsp.cc',
101         'import.cc',
102         'instrument_info.cc',
103         'internal_return.cc',
104         'internal_send.cc',
105         'interpolation.cc',
106         'io.cc',
107         'io_processor.cc',
108         'kmeterdsp.cc',
109         'ladspa_plugin.cc',
110         'ladspa_search_path.cc',
111         'location.cc',
112         'location_importer.cc',
113         'ltc_slave.cc',
114         'lv2_bundled_search_path.cc',
115         'meter.cc',
116         'midi_automation_list_binder.cc',
117         'midi_buffer.cc',
118         'midi_clock_slave.cc',
119         'midi_diskstream.cc',
120         'midi_model.cc',
121         'midi_patch_manager.cc',
122         'midi_patch_search_path.cc',
123         'midi_playlist.cc',
124         'midi_playlist_source.cc',
125         'midi_port.cc',
126         'midi_region.cc',
127         'midi_ring_buffer.cc',
128         'midi_source.cc',
129         'midi_state_tracker.cc',
130         'midi_stretch.cc',
131         'midi_track.cc',
132         'midi_ui.cc',
133         'midiport_manager.cc',
134         'mix.cc',
135         'monitor_processor.cc',
136         'mtc_slave.cc',
137         'mtdm.cc',
138         'mute_master.cc',
139         'onset_detector.cc',
140         'operations.cc',
141         'pan_controllable.cc',
142         'pannable.cc',
143         'panner.cc',
144         'panner_manager.cc',
145         'panner_search_path.cc',
146         'panner_shell.cc',
147         'pcm_utils.cc',
148         'pi_controller.cc',
149         'playlist.cc',
150         'playlist_factory.cc',
151         'playlist_source.cc',
152         'plugin.cc',
153         'plugin_insert.cc',
154         'plugin_manager.cc',
155         'port.cc',
156         'port_insert.cc',
157         'port_manager.cc',
158         'port_set.cc',
159         'process_thread.cc',
160         'processor.cc',
161         'progress.cc',
162         'quantize.cc',
163         'rc_configuration.cc',
164         'recent_sessions.cc',
165         'region_factory.cc',
166         'resampled_source.cc',
167         'region.cc',
168         'return.cc',
169         'reverse.cc',
170         'route.cc',
171         'route_graph.cc',
172         'route_group.cc',
173         'route_group_member.cc',
174         'rb_effect.cc',
175         'send.cc',
176         'session.cc',
177         'session_butler.cc',
178         'session_click.cc',
179         'session_command.cc',
180         'session_configuration.cc',
181         'session_directory.cc',
182         'session_events.cc',
183         'session_export.cc',
184         'session_handle.cc',
185         'session_ltc.cc',
186         'session_metadata.cc',
187         'session_midi.cc',
188         'session_object.cc',
189         'session_playlists.cc',
190         'session_process.cc',
191         'session_rtevents.cc',
192         'session_state.cc',
193         'session_state_utils.cc',
194         'session_time.cc',
195         'session_transport.cc',
196         'slave.cc',
197         'smf_source.cc',
198         'sndfile_helpers.cc',
199         'sndfileimportable.cc',
200         'sndfilesource.cc',
201         'source.cc',
202         'source_factory.cc',
203         'speakers.cc',
204         'strip_silence.cc',
205         'revision.cc',
206         'tape_file_matcher.cc',
207         'template_utils.cc',
208         'tempo.cc',
209         'tempo_map_importer.cc',
210         'thread_buffers.cc',
211         'ticker.cc',
212         'track.cc',
213         'transient_detector.cc',
214         'unknown_processor.cc',
215         'user_bundle.cc',
216         'utils.cc',
217         'version.cc',
218         'vumeterdsp.cc',
219         'worker.cc'
220 ]
221
222 def flac_supported():
223     cmd = subprocess.Popen ("sndfile-info testfile.flac",
224                             stdout = subprocess.PIPE,
225                             stderr = subprocess.STDOUT, shell = True)
226     out = cmd.communicate()[0].decode('utf-8');
227     return re.search ('unknown format', out) == None
228
229 def ogg_supported():
230     cmd = subprocess.Popen ("sndfile-info testfile.ogg",
231                             stdout = subprocess.PIPE,
232                             stderr = subprocess.STDOUT, shell = True)
233     out = cmd.communicate()[0].decode('utf-8');
234     return re.search ('unknown format', out) == None
235
236 def options(opt):
237     autowaf.set_options(opt)
238
239 def configure(conf):
240     conf.load('compiler_cxx')
241     conf.load('gas')
242     # we don't use hard-coded micro versions with ardour, so hard code it to zero
243     autowaf.build_version_files(
244         path_prefix + 'ardour/version.h',
245         path_prefix + 'version.cc',
246         'libardour3', conf.env['MAJOR'], conf.env['MINOR'], 0,
247         'LIBARDOUR_API', 'ardour/libardour_visibility.h')
248     autowaf.configure(conf)
249     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
250                       exact_version='0.3.2')
251     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
252     if Options.options.dist_target != 'mingw':
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='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='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
302
303     if flac_supported():
304         conf.define ('HAVE_FLAC', 1)
305     if ogg_supported():
306         conf.define ('HAVE_OGG', 1)
307
308     conf.write_config_header('libardour-config.h', remove=False)
309
310     # Boost headers
311     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
312     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
313     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
314     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
315
316
317 def build(bld):
318     # Library version (UNIX style major, minor, micro)
319     # major increment <=> incompatible changes
320     # minor increment <=> compatible changes (additions)
321     # micro increment <=> no interface changes
322     LIBARDOUR_LIB_VERSION = "3.0.0"
323
324     # Library
325     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
326         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=libardour_sources)
327         # macros for this shared library
328         obj.defines      = [ 'LIBARDOUR_DLL_EXPORTS=1' ]
329         obj.cflags       = [ '-fvisibility=hidden' ]
330         obj.cxxflags     = [ '-fvisibility=hidden' ]
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','DL']
344     obj.use          = ['libpbd','libmidipp','libevoral', 'libvampplugin',
345                         'libaudiographer', 
346                         'libtimecode_includes',
347                         ]
348     if bld.is_defined('USE_EXTERNAL_LIBS'):
349         obj.uselib.extend(['RUBBERBAND', 'TAGLIB', 'VAMPSDK', 'LIBLTC',
350                            'VAMPHOSTSDK'])
351     else:
352         obj.use.extend(['librubberband', 'libtaglib', 'libvamphost'
353                         '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         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"',
363         'EVORAL_MIDI_XML=1',
364         ]
365
366     #obj.source += ' st_stretch.cc st_pitch.cc '
367     #obj.uselib += ' SOUNDTOUCH '
368     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
369
370     if bld.is_defined('HAVE_LILV') :
371         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc'] 
372         obj.uselib += ['LILV']
373         if bld.is_defined('HAVE_SUIL'):
374             obj.uselib += ['SUIL']
375
376     if bld.is_defined('WINDOWS_VST_SUPPORT'):
377         obj.source += [ 'windows_vst_plugin.cc']
378         obj.includes += [ '../fst' ]
379         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
380
381     if bld.is_defined('LXVST_SUPPORT'):
382         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc', 'linux_vst_info_file.cc' ]
383         obj.defines += [ 'LXVST_SUPPORT' ]
384
385     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
386         obj.source += [ 'session_vst.cc', 'vst_plugin.cc' ]
387
388     if bld.is_defined('HAVE_COREAUDIO'):
389         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
390         obj.use    += ['libappleutility']
391
392     if bld.is_defined('AUDIOUNIT_SUPPORT'):
393         obj.source += [ 'audio_unit.cc' ]
394
395     if Options.options.fpu_optimization:
396         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
397             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s' ]
398         elif bld.env['build_target'] == 'x86_64':
399             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
400
401     # i18n
402     if bld.is_defined('ENABLE_NLS'):
403         mo_files = bld.path.ant_glob('po/*.mo')
404         for mo in mo_files:
405             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
406             bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
407                                         lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
408                            mo)
409
410     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
411         # Unit tests
412         # only build these common sources once
413         testcommon              = bld(features = 'cxx')
414         testcommon.includes     = obj.includes + ['test', '../pbd', '..']
415         testcommon.source       = ['test/testrunner.cc', 'test/test_needing_session.cc',
416                                    'test/test_common.cc', 'test/dummy_lxvst.cc', 'test/audio_region_test.cc', 'test/test_util.cc']
417         testcommon.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
418                                    'SAMPLERATE','XML','LRDF','COREAUDIO']
419         testcommon.use          = ['libpbd','libmidipp','libevoral',
420                                    'libvampplugin','libaudiographer','ardour']
421         if bld.is_defined('USE_EXTERNAL_LIBS'):
422             testcommon.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK',
423                                       'VAMPHOSTSDK'])
424         else:
425             testcommon.use.extend(['libltc', 'librubberband', 'libtaglib', 'libvamphost'])
426         testcommon.defines      = [
427             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
428             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
429             'LOCALEDIR="' + os.path.join(
430                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
431             'VAMP_DIR="' + os.path.join(
432                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
433             ]
434         testcommon.name         = 'testcommon'
435
436         if bld.env['FPU_OPTIMIZATION']:
437             testcommon.source += [ 'sse_functions_xmm.cc' ]
438             if (bld.env['build_target'] == 'i386'
439                 or bld.env['build_target'] == 'i686'):
440                 testcommon.source += [ 'sse_functions.s' ]
441             elif bld.env['build_target'] == 'x86_64':
442                 testcommon.source += [ 'sse_functions_64bit.s' ]
443
444         if bld.env['SINGLE_TESTS']:
445             create_ardour_test_program(bld, obj.includes, 'audio_engine_test', 'test_audio_engine', ['test/audio_engine_test.cc'])
446             create_ardour_test_program(bld, obj.includes, 'automation_list_property_test', 'test_automation_list_property', ['test/automation_list_property_test.cc'])
447             create_ardour_test_program(bld, obj.includes, 'bbt', 'test_bbt', ['test/bbt_test.cc'])
448             create_ardour_test_program(bld, obj.includes, 'tempo', 'test_tempo', ['test/tempo_test.cc'])
449             create_ardour_test_program(bld, obj.includes, 'interpolation', 'test_interpolation', ['test/interpolation_test.cc'])
450             create_ardour_test_program(bld, obj.includes, 'midi_clock_slave', 'test_midi_clock_slave', ['test/midi_clock_slave_test.cc'])
451             create_ardour_test_program(bld, obj.includes, 'resampled_source', 'test_resampled_source', ['test/resampled_source_test.cc'])
452             create_ardour_test_program(bld, obj.includes, 'framewalk_to_beats', 'test_framewalk_to_beats', ['test/framewalk_to_beats_test.cc'])
453             create_ardour_test_program(bld, obj.includes, 'framepos_plus_beats', 'test_framepos_plus_beats', ['test/framepos_plus_beats_test.cc'])
454             create_ardour_test_program(bld, obj.includes, 'framepos_minus_beats', 'test_framepos_minus_beats', ['test/framepos_minus_beats_test.cc'])
455             create_ardour_test_program(bld, obj.includes, 'playlist_equivalent_regions', 'test_playlist_equivalent_regions', ['test/playlist_equivalent_regions_test.cc'])
456             create_ardour_test_program(bld, obj.includes, 'playlist_layering', 'test_playlist_layering', ['test/playlist_layering_test.cc'])
457             create_ardour_test_program(bld, obj.includes, 'plugins_test', 'test_plugins', ['test/plugins_test.cc'])
458             create_ardour_test_program(bld, obj.includes, 'region_naming', 'test_region_naming', ['test/region_naming_test.cc'])
459             create_ardour_test_program(bld, obj.includes, 'control_surface', 'test_control_surfaces', ['test/control_surfaces_test.cc'])
460             create_ardour_test_program(bld, obj.includes, 'mtdm_test', 'test_mtdm', ['test/mtdm_test.cc'])
461             create_ardour_test_program(bld, obj.includes, 'session_test', 'test_session', ['test/session_test.cc'])
462
463         test_sources  = '''
464             test/audio_engine_test.cc
465             test/automation_list_property_test.cc
466             test/bbt_test.cc
467             test/tempo_test.cc
468             test/interpolation_test.cc
469             test/midi_clock_slave_test.cc
470             test/resampled_source_test.cc
471             test/framewalk_to_beats_test.cc
472             test/framepos_plus_beats_test.cc
473             test/framepos_minus_beats_test.cc
474             test/playlist_equivalent_regions_test.cc
475             test/playlist_layering_test.cc
476             test/plugins_test.cc
477             test/region_naming_test.cc
478             test/control_surfaces_test.cc
479             test/mtdm_test.cc
480             test/session_test.cc
481         '''.split()
482
483 # Tests that don't work
484 #                test/playlist_read_test.cc
485 #                test/audio_region_read_test.cc
486 #                test/combine_regions_test.cc
487 #                test/mantis_3356_test.cc
488
489         create_ardour_test_program(bld, obj.includes, 'libardour-tests', 'run-tests', test_sources)
490
491         # Tester to just load a session
492         session_load_tester = bld(features = 'cxx cxxprogram')
493         session_load_tester.source = '''
494                     test/test_util.cc
495                     test/load_session.cc
496                     test/dummy_lxvst.cc
497             '''.split()
498
499         session_load_tester.includes  = obj.includes
500         session_load_tester.includes.append ('test')
501         session_load_tester.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
502                              'SAMPLERATE','XML','LRDF','COREAUDIO']
503         session_load_tester.use       = ['libpbd','libmidipp','ardour']
504         session_load_tester.name      = 'libardour-session-load-tester'
505         session_load_tester.target    = 'load-session'
506         session_load_tester.install_path = ''
507         session_load_tester.defines      = [
508             'PACKAGE="libardour3profile"',
509             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
510             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
511             'LOCALEDIR="' + os.path.join(
512                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
513             'VAMP_DIR="' + os.path.join(
514                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
515             ]
516         if bld.env['FPU_OPTIMIZATION']:
517             session_load_tester.source += [ 'sse_functions_xmm.cc' ]
518             if (bld.env['build_target'] == 'i386'
519                 or bld.env['build_target'] == 'i686'):
520                 session_load_tester.source += [ 'sse_functions.s' ]
521             elif bld.env['build_target'] == 'x86_64':
522                 session_load_tester.source += [ 'sse_functions_64bit.s' ]
523
524         # Profiling
525         for p in ['runpc', 'lots_of_regions', 'load_session']:
526             profilingobj = bld(features = 'cxx cxxprogram')
527             profilingobj.source = '''
528                     test/dummy_lxvst.cc
529                     test/test_util.cc
530             '''.split()
531
532             profilingobj.source.append('test/profiling/%s.cc' % p)
533
534             profilingobj.includes  = obj.includes
535             profilingobj.includes.append ('test')
536             profilingobj.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
537                              'SAMPLERATE','XML','LRDF','COREAUDIO']
538             profilingobj.use       = ['libpbd','libmidipp','ardour']
539             profilingobj.name      = 'libardour-profiling'
540             profilingobj.target    = p
541             profilingobj.install_path = ''
542             profilingobj.defines      = [
543                 'PACKAGE="libardour3profile"',
544                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
545                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
546                 'LOCALEDIR="' + os.path.join(
547                     os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
548                 'VAMP_DIR="' + os.path.join(
549                     os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
550                 ]
551             if bld.env['FPU_OPTIMIZATION']:
552                 profilingobj.source += [ 'sse_functions_xmm.cc' ]
553                 if (bld.env['build_target'] == 'i386'
554                     or bld.env['build_target'] == 'i686'):
555                     profilingobj.source += [ 'sse_functions.s' ]
556                 elif bld.env['build_target'] == 'x86_64':
557                     profilingobj.source += [ 'sse_functions_64bit.s' ]
558
559 def create_ardour_test_program(bld, includes, name, target, sources):
560     testobj              = bld(features = 'cxx cxxprogram')
561     testobj.includes     = includes + ['test', '../pbd', '..']
562     testobj.source       = sources
563     testobj.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
564                             'SAMPLERATE','XML','LRDF','COREAUDIO']
565     testobj.use          = ['libpbd','libmidipp','libevoral','libvampplugin',
566                             'libaudiographer','ardour','testcommon']
567     if bld.is_defined('USE_EXTERNAL_LIBS'):
568         testobj.uselib.extend(['RUBBERBAND', 'TAGLIB', 'LIBLTC', 'VAMPSDK',
569                                'VAMPHOSTSDK'])
570     else:
571         testobj.use.extend(['libltc', 'librubberband', 'libtaglib',
572                             'libvamphost'])
573
574     testobj.name         = name
575     testobj.target       = target
576     # not sure about install path
577     testobj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
578     testobj.defines      = [
579         'PACKAGE="libardour3test"',
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
588 def shutdown():
589     autowaf.shutdown()
590
591 def i18n(bld):
592     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
593                        'Paul Davis')
594
595 def i18n_pot(bld):
596     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
597                        'Paul Davis')
598
599 def i18n_po(bld):
600     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
601                        'Paul Davis')
602
603 def i18n_mo(bld):
604     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
605                        'Paul Davis')