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