Merge branch 'master' into windows
[ardour.git] / libs / ardour / wscript
1 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         '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_formats_search_path.cc',
84         'export_graph_builder.cc',
85         'export_handler.cc',
86         'export_preset.cc',
87         'export_profile_manager.cc',
88         'export_status.cc',
89         'export_timespan.cc',
90         'file_source.cc',
91         'filename_extensions.cc',
92         'filesystem_paths.cc',
93         'filter.cc',
94         'find_session.cc',
95         'globals.cc',
96         'graph.cc',
97         'graphnode.cc',
98         'iec1ppmdsp.cc',
99         'iec2ppmdsp.cc',
100         'import.cc',
101         'instrument_info.cc',
102         'internal_return.cc',
103         'internal_send.cc',
104         'interpolation.cc',
105         'io.cc',
106         'io_processor.cc',
107         'jack_slave.cc',
108         'jack_utils.cc',
109         'kmeterdsp.cc',
110         'ladspa_plugin.cc',
111         'ladspa_search_path.cc',
112         'location.cc',
113         'location_importer.cc',
114         'ltc_slave.cc',
115         'lv2_bundled_search_path.cc',
116         'meter.cc',
117         'midi_automation_list_binder.cc',
118         'midi_buffer.cc',
119         'midi_clock_slave.cc',
120         'midi_diskstream.cc',
121         'midi_model.cc',
122         'midi_patch_manager.cc',
123         'midi_patch_search_path.cc',
124         'midi_playlist.cc',
125         'midi_playlist_source.cc',
126         'midi_port.cc',
127         'midi_region.cc',
128         'midi_ring_buffer.cc',
129         'midi_source.cc',
130         'midi_state_tracker.cc',
131         'midi_stretch.cc',
132         'midi_track.cc',
133         'midi_ui.cc',
134         'midiport_manager.cc',
135         'mix.cc',
136         'monitor_processor.cc',
137         'mtc_slave.cc',
138         'mtdm.cc',
139         'mute_master.cc',
140         'onset_detector.cc',
141         'operations.cc',
142         'pan_controllable.cc',
143         'pannable.cc',
144         'panner.cc',
145         'panner_manager.cc',
146         'panner_search_path.cc',
147         'panner_shell.cc',
148         'pcm_utils.cc',
149         'pi_controller.cc',
150         'playlist.cc',
151         'playlist_factory.cc',
152         'playlist_source.cc',
153         'plugin.cc',
154         'plugin_insert.cc',
155         'plugin_manager.cc',
156         'port.cc',
157         'port_insert.cc',
158         'port_manager.cc',
159         'port_set.cc',
160         'process_thread.cc',
161         'processor.cc',
162         'progress.cc',
163         'quantize.cc',
164         'rc_configuration.cc',
165         'recent_sessions.cc',
166         'region_factory.cc',
167         'resampled_source.cc',
168         'region.cc',
169         'return.cc',
170         'reverse.cc',
171         'route.cc',
172         'route_graph.cc',
173         'route_group.cc',
174         'route_group_member.cc',
175         'rb_effect.cc',
176         'send.cc',
177         'session.cc',
178         'session_butler.cc',
179         'session_click.cc',
180         'session_command.cc',
181         'session_configuration.cc',
182         'session_directory.cc',
183         'session_events.cc',
184         'session_export.cc',
185         'session_handle.cc',
186         'session_jack.cc',
187         'session_ltc.cc',
188         'session_metadata.cc',
189         'session_midi.cc',
190         'session_object.cc',
191         'session_playlists.cc',
192         'session_process.cc',
193         'session_rtevents.cc',
194         'session_state.cc',
195         'session_state_utils.cc',
196         'session_time.cc',
197         'session_transport.cc',
198         'slave.cc',
199         'smf_source.cc',
200         'sndfile_helpers.cc',
201         'sndfileimportable.cc',
202         'sndfilesource.cc',
203         'source.cc',
204         'source_factory.cc',
205         'speakers.cc',
206         'strip_silence.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         'unknown_processor.cc',
217         'user_bundle.cc',
218         'utils.cc',
219         'version.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.build_version_files(
246         path_prefix + 'ardour/version.h',
247         path_prefix + 'version.cc',
248         'libardour3', conf.env['MAJOR'], conf.env['MINOR'], 0)
249     autowaf.configure(conf)
250     autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
251                       atleast_version='0.118.2')
252     if Options.options.dist_target == 'auto':
253         if re.search ("linux", sys.platform) != None:
254             autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
255     if Options.options.dist_target == 'mingw':
256         autowaf.check_pkg(conf, 'portaudio-2.0', uselib_store='PORTAUDIO',
257                           atleast_version='19')
258     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
259     if Options.options.dist_target != 'mingw':
260         autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
261                           atleast_version='0.4.0')
262         autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
263                           atleast_version='0.3.2')
264     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
265                       atleast_version='0.1.0')
266     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
267                       atleast_version='2.0')
268
269     if re.search ("linux", sys.platform) != None:
270         autowaf.check_pkg(conf, 'alsa', uselib_store='ALSA')
271
272     if Options.options.lv2:
273         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
274                           atleast_version='1.0.0', mandatory=True)
275         autowaf.check_pkg(conf, 'lv2', uselib_store='NEW_LV2',
276                           atleast_version='1.0.15', mandatory=False)
277         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
278                           atleast_version='0.14.0', mandatory=True)
279         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
280                           atleast_version='0.8.0', mandatory=True)
281         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
282                           atleast_version='0.2.0', mandatory=True)
283         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
284                           atleast_version='0.14.0', mandatory=True)
285         autowaf.check_pkg(conf, 'lilv-0', uselib_store='NEW_LILV',
286                           atleast_version='0.15.0', 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     # we don't try to detect this, since its part of our source tree
302
303     conf.define('HAVE_RUBBERBAND', 1) # controls whether we think we have it
304     conf.define('USE_RUBBERBAND', 1)  # controls whether we actually use it
305
306     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
307
308     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
309     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
310
311     conf.check(header_name='jack/session.h', uselib = [ 'JACK' ],
312                define_name='HAVE_JACK_SESSION')
313
314     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
315
316     if flac_supported():
317         conf.define ('HAVE_FLAC', 1)
318     if ogg_supported():
319         conf.define ('HAVE_OGG', 1)
320
321     conf.write_config_header('libardour-config.h', remove=False)
322
323     # Boost headers
324     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
325     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
326     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
327     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
328
329
330 def build(bld):
331     # Library version (UNIX style major, minor, micro)
332     # major increment <=> incompatible changes
333     # minor increment <=> compatible changes (additions)
334     # micro increment <=> no interface changes
335     LIBARDOUR_LIB_VERSION = "3.0.0."
336
337     # Library
338     if bld.is_defined ('INTERNAL_SHARED_LIBS'):
339         obj              = bld.shlib(features = 'c cxx cshlib cxxshlib', source=libardour_sources)
340     else:
341         obj              = bld.stlib(features = 'c cxx cstlib cxxstlib', source=libardour_sources)
342         obj.cxxflags     = [ '-fPIC' ]
343         obj.cflags       = [ '-fPIC' ]
344
345     obj.export_includes = ['.']
346     obj.includes     = ['.', '../surfaces/control_protocol', '..']
347     obj.name         = 'ardour'
348     obj.target       = 'ardour'
349     obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID',
350                         'JACK', 'ALSA', 'PORTAUDIO', 'SNDFILE','SAMPLERATE','LRDF',
351                         'AUDIOUNITS', 'OSX','BOOST','CURL','DL']
352     obj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
353                         'libvampplugin','libtaglib','librubberband',
354                         'libaudiographer','libltc']
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/test_globals.cc', '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','JACK','GLIBMM','GTHREAD',
418                                    'SAMPLERATE','XML','LRDF','COREAUDIO']
419         testcommon.use          = ['libpbd','libmidipp','libevoral','libvamphost',
420                                    'libvampplugin','libtaglib','librubberband',
421                                    'libaudiographer','libltc','ardour']
422         testcommon.defines      = [
423             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
424             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
425             'LOCALEDIR="' + os.path.join(
426                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
427             'VAMP_DIR="' + os.path.join(
428                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
429             ]
430         testcommon.name         = 'testcommon'
431
432         if bld.env['FPU_OPTIMIZATION']:
433             testcommon.source += [ 'sse_functions_xmm.cc' ]
434             if (bld.env['build_target'] == 'i386'
435                 or bld.env['build_target'] == 'i686'):
436                 testcommon.source += [ 'sse_functions.s' ]
437             elif bld.env['build_target'] == 'x86_64':
438                 testcommon.source += [ 'sse_functions_64bit.s' ]
439
440         if bld.env['SINGLE_TESTS']:
441             create_ardour_test_program(bld, obj.includes, 'automation_list_property_test', 'test_automation_list_property', ['test/automation_list_property_test.cc'])
442             create_ardour_test_program(bld, obj.includes, 'bbt', 'test_bbt', ['test/bbt_test.cc'])
443             create_ardour_test_program(bld, obj.includes, 'tempo', 'test_tempo', ['test/tempo_test.cc'])
444             create_ardour_test_program(bld, obj.includes, 'interpolation', 'test_interpolation', ['test/interpolation_test.cc'])
445             create_ardour_test_program(bld, obj.includes, 'midi_clock_slave', 'test_midi_clock_slave', ['test/midi_clock_slave_test.cc'])
446             create_ardour_test_program(bld, obj.includes, 'resampled_source', 'test_resampled_source', ['test/resampled_source_test.cc'])
447             create_ardour_test_program(bld, obj.includes, 'framewalk_to_beats', 'test_framewalk_to_beats', ['test/framewalk_to_beats_test.cc'])
448             create_ardour_test_program(bld, obj.includes, 'framepos_plus_beats', 'test_framepos_plus_beats', ['test/framepos_plus_beats_test.cc'])
449             create_ardour_test_program(bld, obj.includes, 'framepos_minus_beats', 'test_framepos_minus_beats', ['test/framepos_minus_beats_test.cc'])
450             create_ardour_test_program(bld, obj.includes, 'jack_utils', 'test_jack_utils', ['test/jack_utils_test.cc'])
451             create_ardour_test_program(bld, obj.includes, 'playlist_equivalent_regions', 'test_playlist_equivalent_regions', ['test/playlist_equivalent_regions_test.cc'])
452             create_ardour_test_program(bld, obj.includes, 'playlist_layering', 'test_playlist_layering', ['test/playlist_layering_test.cc'])
453             create_ardour_test_program(bld, obj.includes, 'plugins_test', 'test_plugins', ['test/plugins_test.cc'])
454             create_ardour_test_program(bld, obj.includes, 'region_naming', 'test_region_naming', ['test/region_naming_test.cc'])
455             create_ardour_test_program(bld, obj.includes, 'control_surface', 'test_control_surfaces', ['test/control_surfaces_test.cc'])
456             create_ardour_test_program(bld, obj.includes, 'mtdm_test', 'test_mtdm', ['test/mtdm_test.cc'])
457             create_ardour_test_program(bld, obj.includes, 'session_test', 'test_session', ['test/session_test.cc'])
458
459         test_sources  = '''
460             test/automation_list_property_test.cc
461             test/bbt_test.cc
462             test/tempo_test.cc
463             test/interpolation_test.cc
464             test/midi_clock_slave_test.cc
465             test/resampled_source_test.cc
466             test/framewalk_to_beats_test.cc
467             test/framepos_plus_beats_test.cc
468             test/framepos_minus_beats_test.cc
469             test/jack_utils_test.cc
470             test/playlist_equivalent_regions_test.cc
471             test/playlist_layering_test.cc
472             test/plugins_test.cc
473             test/region_naming_test.cc
474             test/control_surfaces_test.cc
475             test/mtdm_test.cc
476             test/session_test.cc
477         '''.split()
478
479 # Tests that don't work
480 #                test/playlist_read_test.cc
481 #                test/audio_region_read_test.cc
482 #                test/combine_regions_test.cc
483 #                test/mantis_3356_test.cc
484
485         create_ardour_test_program(bld, obj.includes, 'libardour-tests', 'run-tests', test_sources)
486
487         # Tester to just load a session
488         session_load_tester = bld(features = 'cxx cxxprogram')
489         session_load_tester.source = '''
490                     test/test_util.cc
491                     test/load_session.cc
492                     test/dummy_lxvst.cc
493             '''.split()
494
495         session_load_tester.includes  = obj.includes
496         session_load_tester.includes.append ('test')
497         session_load_tester.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
498                              'SAMPLERATE','XML','LRDF','COREAUDIO']
499         session_load_tester.use       = ['libpbd','libmidipp','ardour']
500         session_load_tester.name      = 'libardour-session-load-tester'
501         session_load_tester.target    = 'load-session'
502         session_load_tester.install_path = ''
503         session_load_tester.defines      = [
504             'PACKAGE="libardour3profile"',
505             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
506             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
507             'LOCALEDIR="' + os.path.join(
508                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
509             'VAMP_DIR="' + os.path.join(
510                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
511             ]
512         if bld.env['FPU_OPTIMIZATION']:
513             session_load_tester.source += [ 'sse_functions_xmm.cc' ]
514             if (bld.env['build_target'] == 'i386'
515                 or bld.env['build_target'] == 'i686'):
516                 session_load_tester.source += [ 'sse_functions.s' ]
517             elif bld.env['build_target'] == 'x86_64':
518                 session_load_tester.source += [ 'sse_functions_64bit.s' ]
519
520         # Profiling
521         for p in ['runpc', 'lots_of_regions', 'load_session']:
522             profilingobj = bld(features = 'cxx cxxprogram')
523             profilingobj.source = '''
524                     test/dummy_lxvst.cc
525                     test/test_util.cc
526             '''.split()
527
528             profilingobj.source.append('test/profiling/%s.cc' % p)
529
530             profilingobj.includes  = obj.includes
531             profilingobj.includes.append ('test')
532             profilingobj.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
533                              'SAMPLERATE','XML','LRDF','COREAUDIO']
534             profilingobj.use       = ['libpbd','libmidipp','ardour']
535             profilingobj.name      = 'libardour-profiling'
536             profilingobj.target    = p
537             profilingobj.install_path = ''
538             profilingobj.defines      = [
539                 'PACKAGE="libardour3profile"',
540                 'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
541                 'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
542                 'LOCALEDIR="' + os.path.join(
543                     os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
544                 'VAMP_DIR="' + os.path.join(
545                     os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
546                 ]
547             if bld.env['FPU_OPTIMIZATION']:
548                 profilingobj.source += [ 'sse_functions_xmm.cc' ]
549                 if (bld.env['build_target'] == 'i386'
550                     or bld.env['build_target'] == 'i686'):
551                     profilingobj.source += [ 'sse_functions.s' ]
552                 elif bld.env['build_target'] == 'x86_64':
553                     profilingobj.source += [ 'sse_functions_64bit.s' ]
554
555 def create_ardour_test_program(bld, includes, name, target, sources):
556     testobj              = bld(features = 'cxx cxxprogram')
557     testobj.includes     = includes + ['test', '../pbd', '..']
558     testobj.source       = sources
559     testobj.uselib       = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
560                             'SAMPLERATE','XML','LRDF','COREAUDIO']
561     testobj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
562                             'libvampplugin','libtaglib','librubberband',
563                             'libaudiographer','libltc','ardour','testcommon']
564     testobj.name         = name
565     testobj.target       = target
566     # not sure about install path
567     testobj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
568     testobj.defines      = [
569         'PACKAGE="libardour3test"',
570         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
571         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
572         'LOCALEDIR="' + os.path.join(
573             os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
574         'VAMP_DIR="' + os.path.join(
575             os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
576         ]
577
578 def shutdown():
579     autowaf.shutdown()
580
581 def i18n(bld):
582     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
583                        'Paul Davis')
584
585 def i18n_pot(bld):
586     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
587                        'Paul Davis')
588
589 def i18n_po(bld):
590     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
591                        'Paul Davis')
592
593 def i18n_mo(bld):
594     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
595                        'Paul Davis')