MIDI transform dialog.
[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         'config_text.cc',
60         'control_protocol_manager.cc',
61         'cycle_timer.cc',
62         'data_type.cc',
63         'default_click.cc',
64         'debug.cc',
65         'delayline.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         'legatize.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         '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         'version.cc',
221         'vumeterdsp.cc',
222         'worker.cc'
223 ]
224
225 def flac_supported():
226     cmd = subprocess.Popen ("sndfile-info testfile.flac",
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 ogg_supported():
233     cmd = subprocess.Popen ("sndfile-info testfile.ogg",
234                             stdout = subprocess.PIPE,
235                             stderr = subprocess.STDOUT, shell = True)
236     out = cmd.communicate()[0].decode('utf-8');
237     return re.search ('unknown format', out) == None
238
239 def options(opt):
240     autowaf.set_options(opt)
241
242 def configure(conf):
243     conf.load('compiler_cxx')
244     conf.load('gas')
245     # we don't use hard-coded micro versions with ardour, so hard code it to zero
246     autowaf.build_version_files(
247         path_prefix + 'ardour/version.h',
248         path_prefix + 'version.cc',
249         'libardour3', conf.env['MAJOR'], conf.env['MINOR'], 0,
250         'LIBARDOUR_API', 'ardour/libardour_visibility.h')
251     autowaf.configure(conf)
252     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
253                       atleast_version='0.3.2')
254     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO4',
255                       atleast_version='0.4.0', mandatory=False)
256     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
257     if Options.options.dist_target != 'mingw':
258         if not Options.options.no_lrdf:
259             autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
260                               atleast_version='0.4.0')
261         autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
262                           atleast_version='0.3.2')
263     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
264                       atleast_version='0.1.0')
265     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
266                       atleast_version='2.0')
267
268     if Options.options.lv2:
269         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
270                           atleast_version='1.0.0', mandatory=True)
271         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2_1_2_0',
272                           atleast_version='1.2.0', mandatory=False)
273         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2_1_10_0',
274                           atleast_version='1.10.0', mandatory=False)
275         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
276                           atleast_version='0.14.0', mandatory=True)
277         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
278                           atleast_version='0.8.0', mandatory=True)
279         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
280                           atleast_version='0.2.0', mandatory=True)
281         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
282                           atleast_version='0.14.0', mandatory=True)
283         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_16_0',
284                           atleast_version='0.16.0', mandatory=False)
285         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV_0_19_2',
286                           atleast_version='0.19.2', mandatory=False)
287         autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
288                           atleast_version='0.6.0', mandatory=False)
289         conf.define ('LV2_SUPPORT', 1)
290
291 #    autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH',
292 #                      mandatory=False)
293     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT',
294                       atleast_version='1.12.0', mandatory=False)
295     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
296     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
297                       atleast_version='1.2.1')
298     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
299                       atleast_version='7.0.0')
300
301     # controls whether we actually use it in preference to soundtouch
302     # Note: as of 2104, soundtouch (WSOLA) has been out-of-use for years.
303     conf.define('USE_RUBBERBAND', 1)
304
305     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
306
307     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
308     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
309
310     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
311
312     if flac_supported():
313         conf.define ('HAVE_FLAC', 1)
314     if ogg_supported():
315         conf.define ('HAVE_OGG', 1)
316
317     conf.write_config_header('libardour-config.h', remove=False)
318
319     # Boost headers
320     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
321     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
322     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
323     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
324     if conf.env['WINDOWS_VST_SUPPORT'] == True and Options.options.dist_target == 'mingw':
325         conf.check(compiler='cxx',
326                    lib='gdi32',
327                    mandatory=True,
328                    uselib_store='GDI32')
329
330
331 def build(bld):
332     # Library version (UNIX style major, minor, micro)
333     # major increment <=> incompatible changes
334     # minor increment <=> compatible changes (additions)
335     # micro increment <=> no interface changes
336     LIBARDOUR_LIB_VERSION = "3.0.0"
337
338     # Library
339     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
340         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=libardour_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=libardour_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 + '"',
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         'EVORAL_MIDI_XML=1',
375         ]
376
377     #obj.source += ' st_stretch.cc st_pitch.cc '
378     #obj.uselib += ' SOUNDTOUCH '
379     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
380
381     if bld.is_defined('HAVE_LILV') :
382         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc']
383         obj.uselib += ['LILV']
384         if bld.is_defined('HAVE_SUIL'):
385             obj.uselib += ['SUIL']
386
387     if bld.is_defined('WINDOWS_VST_SUPPORT'):
388         obj.source += [ 'windows_vst_plugin.cc']
389         obj.includes += [ '../fst' ]
390         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
391         if bld.env['build_target'] == 'mingw':
392             obj.source += [ '../fst/vstwin.c']
393             obj.uselib += ['GDI32']
394
395     if bld.is_defined('LXVST_SUPPORT'):
396         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc' ]
397         obj.defines += [ 'LXVST_SUPPORT' ]
398
399     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
400         obj.source += [ 'session_vst.cc', 'vst_plugin.cc', 'vst_info_file.cc' ]
401
402     if bld.is_defined('HAVE_COREAUDIO'):
403         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
404         obj.use    += ['libappleutility']
405
406     if bld.is_defined('AUDIOUNIT_SUPPORT'):
407         obj.source += [ 'audio_unit.cc' ]
408
409     if Options.options.fpu_optimization:
410         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
411             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s' ]
412         elif bld.env['build_target'] == 'x86_64':
413             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
414
415     # i18n
416     if bld.is_defined('ENABLE_NLS'):
417         mo_files = bld.path.ant_glob('po/*.mo')
418         for mo in mo_files:
419             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
420             bld.install_as(os.path.join(bld.env['LOCALEDIR'], lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
421                            mo)
422
423     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
424         # Unit tests
425         # only build these common sources once
426         testcommon              = bld(features = 'cxx')
427         testcommon.includes     = obj.includes + ['test', '../pbd', '..']
428         testcommon.source       = ['test/testrunner.cc', 'test/test_needing_session.cc',
429                                    'test/dummy_lxvst.cc', 'test/audio_region_test.cc', 'test/test_util.cc']
430         testcommon.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
431                                    'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
432         testcommon.use          = ['libpbd','libmidipp','libevoral',
433                                    'libaudiographer','libardour']
434         if bld.is_defined('USE_EXTERNAL_LIBS'):
435             testcommon.uselib.extend(['LIBLTC',])
436         else:
437             testcommon.use.extend(['libltc', 'librubberband'])
438         testcommon.defines      = [
439             'PACKAGE="libardour3test"',
440             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
441             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
442             'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
443             ]
444         testcommon.name         = 'testcommon'
445
446         if bld.env['FPU_OPTIMIZATION']:
447             testcommon.source += [ 'sse_functions_xmm.cc' ]
448             if (bld.env['build_target'] == 'i386'
449                 or bld.env['build_target'] == 'i686'):
450                 testcommon.source += [ 'sse_functions.s' ]
451             elif bld.env['build_target'] == 'x86_64':
452                 testcommon.source += [ 'sse_functions_64bit.s' ]
453
454         if bld.env['SINGLE_TESTS']:
455             create_ardour_test_program(bld, obj.includes, 'audio_engine_test', 'test_audio_engine', ['test/audio_engine_test.cc'])
456             create_ardour_test_program(bld, obj.includes, 'automation_list_property_test', 'test_automation_list_property', ['test/automation_list_property_test.cc'])
457             create_ardour_test_program(bld, obj.includes, 'bbt', 'test_bbt', ['test/bbt_test.cc'])
458             create_ardour_test_program(bld, obj.includes, 'tempo', 'test_tempo', ['test/tempo_test.cc'])
459             create_ardour_test_program(bld, obj.includes, 'interpolation', 'test_interpolation', ['test/interpolation_test.cc'])
460             create_ardour_test_program(bld, obj.includes, 'midi_clock_slave', 'test_midi_clock_slave', ['test/midi_clock_slave_test.cc'])
461             create_ardour_test_program(bld, obj.includes, 'resampled_source', 'test_resampled_source', ['test/resampled_source_test.cc'])
462             create_ardour_test_program(bld, obj.includes, 'framewalk_to_beats', 'test_framewalk_to_beats', ['test/framewalk_to_beats_test.cc'])
463             create_ardour_test_program(bld, obj.includes, 'framepos_plus_beats', 'test_framepos_plus_beats', ['test/framepos_plus_beats_test.cc'])
464             create_ardour_test_program(bld, obj.includes, 'framepos_minus_beats', 'test_framepos_minus_beats', ['test/framepos_minus_beats_test.cc'])
465             create_ardour_test_program(bld, obj.includes, 'playlist_equivalent_regions', 'test_playlist_equivalent_regions', ['test/playlist_equivalent_regions_test.cc'])
466             create_ardour_test_program(bld, obj.includes, 'playlist_layering', 'test_playlist_layering', ['test/playlist_layering_test.cc'])
467             create_ardour_test_program(bld, obj.includes, 'plugins_test', 'test_plugins', ['test/plugins_test.cc'])
468             create_ardour_test_program(bld, obj.includes, 'region_naming', 'test_region_naming', ['test/region_naming_test.cc'])
469             create_ardour_test_program(bld, obj.includes, 'control_surface', 'test_control_surfaces', ['test/control_surfaces_test.cc'])
470             create_ardour_test_program(bld, obj.includes, 'mtdm_test', 'test_mtdm', ['test/mtdm_test.cc'])
471             create_ardour_test_program(bld, obj.includes, 'session_test', 'test_session', ['test/session_test.cc'])
472
473         test_sources  = '''
474             test/audio_engine_test.cc
475             test/automation_list_property_test.cc
476             test/bbt_test.cc
477             test/tempo_test.cc
478             test/interpolation_test.cc
479             test/midi_clock_slave_test.cc
480             test/resampled_source_test.cc
481             test/framewalk_to_beats_test.cc
482             test/framepos_plus_beats_test.cc
483             test/framepos_minus_beats_test.cc
484             test/playlist_equivalent_regions_test.cc
485             test/playlist_layering_test.cc
486             test/plugins_test.cc
487             test/region_naming_test.cc
488             test/control_surfaces_test.cc
489             test/mtdm_test.cc
490             test/session_test.cc
491         '''.split()
492
493 # Tests that don't work
494 #                test/playlist_read_test.cc
495 #                test/audio_region_read_test.cc
496 #                test/combine_regions_test.cc
497 #                test/mantis_3356_test.cc
498
499         create_ardour_test_program(bld, obj.includes, 'libardour-tests', 'run-tests', test_sources)
500
501         # Tester to just load a session
502         session_load_tester = bld(features = 'cxx cxxprogram')
503         session_load_tester.source = '''
504                     test/test_util.cc
505                     test/load_session.cc
506                     test/dummy_lxvst.cc
507             '''.split()
508
509         session_load_tester.includes  = obj.includes
510         session_load_tester.includes.append ('test')
511         session_load_tester.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
512                              'SAMPLERATE','XML','LRDF','COREAUDIO']
513         session_load_tester.use       = ['libpbd','libmidipp','libardour']
514         session_load_tester.name      = 'libardour-session-load-tester'
515         session_load_tester.target    = 'load-session'
516         session_load_tester.install_path = ''
517         session_load_tester.defines      = [
518             'PACKAGE="libardour3profile"',
519             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
520             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
521             'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
522             ]
523         if bld.env['FPU_OPTIMIZATION']:
524             session_load_tester.source += [ 'sse_functions_xmm.cc' ]
525             if (bld.env['build_target'] == 'i386'
526                 or bld.env['build_target'] == 'i686'):
527                 session_load_tester.source += [ 'sse_functions.s' ]
528             elif bld.env['build_target'] == 'x86_64':
529                 session_load_tester.source += [ 'sse_functions_64bit.s' ]
530
531         # Profiling
532         for p in ['runpc', 'lots_of_regions', 'load_session']:
533             profilingobj = bld(features = 'cxx cxxprogram')
534             profilingobj.source = '''
535                     test/dummy_lxvst.cc
536                     test/test_util.cc
537             '''.split()
538
539             profilingobj.source.append('test/profiling/%s.cc' % p)
540
541             profilingobj.includes  = obj.includes
542             profilingobj.includes.append ('test')
543             profilingobj.uselib    = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
544                              'SAMPLERATE','XML','LRDF','COREAUDIO']
545             profilingobj.use       = ['libpbd','libmidipp','libardour']
546             profilingobj.name      = 'libardour-profiling'
547             profilingobj.target    = p
548             profilingobj.install_path = ''
549             profilingobj.defines      = [
550                 'PACKAGE="libardour3profile"',
551                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
552                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
553                 'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
554                 ]
555             if bld.env['FPU_OPTIMIZATION']:
556                 profilingobj.source += [ 'sse_functions_xmm.cc' ]
557                 if (bld.env['build_target'] == 'i386'
558                     or bld.env['build_target'] == 'i686'):
559                     profilingobj.source += [ 'sse_functions.s' ]
560                 elif bld.env['build_target'] == 'x86_64':
561                     profilingobj.source += [ 'sse_functions_64bit.s' ]
562
563 def create_ardour_test_program(bld, includes, name, target, sources):
564     testobj              = bld(features = 'cxx cxxprogram')
565     testobj.includes     = includes + ['test', '../pbd', '..']
566     testobj.source       = sources
567     testobj.uselib       = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
568                             'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
569     testobj.use          = ['libpbd','libmidipp','libevoral',
570                             'libaudiographer','libardour','testcommon']
571     if bld.is_defined('USE_EXTERNAL_LIBS'):
572         testobj.uselib.extend(['LIBLTC'])
573     else:
574         testobj.use.extend(['libltc'])
575
576     testobj.name         = name
577     testobj.target       = target
578     # not sure about install path
579     testobj.install_path = bld.env['LIBDIR']
580     testobj.defines      = [
581         'PACKAGE="libardour3test"',
582         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
583         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
584         'LOCALEDIR="' + os.path.normpath(bld.env['LOCALEDIR']) + '"',
585         ]
586
587 def shutdown():
588     autowaf.shutdown()
589
590 def i18n(bld):
591     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
592                        'Paul Davis')
593
594 def i18n_pot(bld):
595     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
596                        'Paul Davis')
597
598 def i18n_po(bld):
599     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
600                        'Paul Davis')
601
602 def i18n_mo(bld):
603     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
604                        'Paul Davis')