Add new SharedStatefulProperty which manages a shared_ptr to
[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 re
6 import subprocess
7
8 # Version of this package (even if built as a child)
9 MAJOR = '3'
10 MINOR = '0'
11 MICRO = '0'
12 LIBARDOUR_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
13
14 # Library version (UNIX style major, minor, micro)
15 # major increment <=> incompatible changes
16 # minor increment <=> compatible changes (additions)
17 # micro increment <=> no interface changes
18 LIBARDOUR_LIB_VERSION = '3.0.0'
19
20 # default state file version for this build
21 CURRENT_SESSION_FILE_VERSION = 3001
22
23 # Variables for 'waf dist'
24 APPNAME = 'libardour3'
25 VERSION = LIBARDOUR_VERSION
26 I18N_PACKAGE = 'libardour3'
27
28 # Mandatory variables
29 top = '.'
30 out = 'build'
31
32 path_prefix = 'libs/ardour/'
33
34 libardour_sources = [
35         'amp.cc',
36         'analyser.cc',
37         'audio_buffer.cc',
38         'audio_diskstream.cc',
39         'audio_library.cc',
40         'audio_playlist.cc',
41         'audio_playlist_importer.cc',
42         'audio_playlist_source.cc',
43         'audio_port.cc',
44         'audio_region_importer.cc',
45         'audio_track.cc',
46         'audio_track_importer.cc',
47         'audioanalyser.cc',
48         'audioengine.cc',
49         'audiofile_tagger.cc',
50         'audiofilesource.cc',
51         'audioregion.cc',
52         'audiosource.cc',
53         'auditioner.cc',
54         'automatable.cc',
55         'automation.cc',
56         'automation_control.cc',
57         'automation_list.cc',
58         'beats_frames_converter.cc',
59         'broadcast_info.cc',
60         'buffer.cc',
61         'buffer_manager.cc',
62         'buffer_set.cc',
63         'bundle.cc',
64         'butler.cc',
65         'callback.cc',
66         'capturing_processor.cc',
67         'chan_count.cc',
68         'chan_mapping.cc',
69         'configuration.cc',
70         'config_text.cc',
71         'control_protocol_manager.cc',
72         'control_protocol_search_path.cc',
73         'cycle_timer.cc',
74         'data_type.cc',
75         'default_click.cc',
76         'debug.cc',
77         'delivery.cc',
78         'directory_names.cc',
79         'diskstream.cc',
80         'element_import_handler.cc',
81         'element_importer.cc',
82         'enums.cc',
83         'event_type_map.cc',
84         'export_channel.cc',
85         'export_channel_configuration.cc',
86         'export_failed.cc',
87         'export_filename.cc',
88         'export_format_base.cc',
89         'export_format_manager.cc',
90         'export_format_specification.cc',
91         'export_formats.cc',
92         'export_formats_search_path.cc',
93         'export_graph_builder.cc',
94         'export_handler.cc',
95         'export_preset.cc',
96         'export_profile_manager.cc',
97         'export_status.cc',
98         'export_timespan.cc',
99         'file_source.cc',
100         'filename_extensions.cc',
101         'filesystem_paths.cc',
102         'filter.cc',
103         'find_session.cc',
104         'globals.cc',
105         'graph.cc',
106         'graphnode.cc',
107         'import.cc',
108         'instrument_info.cc',
109         'internal_return.cc',
110         'internal_send.cc',
111         'interpolation.cc',
112         'io.cc',
113         'io_processor.cc',
114         'jack_slave.cc',
115         'ladspa_plugin.cc',
116         'location.cc',
117         'location_importer.cc',
118         'meter.cc',
119         'midi_automation_list_binder.cc',
120         'midi_buffer.cc',
121         'midi_clock_slave.cc',
122         'midi_diskstream.cc',
123         'midi_model.cc',
124         'midi_patch_manager.cc',
125         'midi_patch_search_path.cc',
126         'midi_playlist.cc',
127         'midi_playlist_source.cc',
128         'midi_port.cc',
129         'midi_region.cc',
130         'midi_ring_buffer.cc',
131         'midi_source.cc',
132         'midi_state_tracker.cc',
133         'midi_stretch.cc',
134         'midi_track.cc',
135         'midi_ui.cc',
136         'mix.cc',
137         'monitor_processor.cc',
138         'mtc_slave.cc',
139         'mtdm.cc',
140         'mute_master.cc',
141         'named_selection.cc',
142         'onset_detector.cc',
143         'operations.cc',
144         'pan_controllable.cc',
145         'pannable.cc',
146         'panner.cc',
147         'panner_manager.cc',
148         'panner_search_path.cc',
149         'panner_shell.cc',
150         'pcm_utils.cc',
151         'pi_controller.cc',
152         'playlist.cc',
153         'playlist_factory.cc',
154         'playlist_source.cc',
155         'plugin.cc',
156         'plugin_insert.cc',
157         'plugin_manager.cc',
158         'port.cc',
159         'port_insert.cc',
160         'port_set.cc',
161         'process_thread.cc',
162         'processor.cc',
163         'progress.cc',
164         'quantize.cc',
165         'rc_configuration.cc',
166         'recent_sessions.cc',
167         'region_factory.cc',
168         'resampled_source.cc',
169         'region.cc',
170         'return.cc',
171         'reverse.cc',
172         'route.cc',
173         'route_graph.cc',
174         'route_group.cc',
175         'route_group_member.cc',
176         'rb_effect.cc',
177         'send.cc',
178         'session.cc',
179         'session_butler.cc',
180         'session_click.cc',
181         'session_command.cc',
182         'session_configuration.cc',
183         'session_directory.cc',
184         'session_events.cc',
185         'session_export.cc',
186         'session_handle.cc',
187         'session_metadata.cc',
188         'session_midi.cc',
189         'session_object.cc',
190         'session_playlists.cc',
191         'session_process.cc',
192         'session_rtevents.cc',
193         'session_state.cc',
194         'session_state_utils.cc',
195         'session_time.cc',
196         'session_transport.cc',
197         'session_utils.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         'svn_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         '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     autowaf.build_version_files(
244         path_prefix + 'ardour/version.h',
245         path_prefix + 'version.cc',
246         'libardour3', MAJOR, MINOR, MICRO)
247     autowaf.configure(conf)
248     autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
249                       atleast_version='0.3.2')
250     autowaf.check_pkg(conf, 'jack', uselib_store='JACK',
251                       atleast_version='0.118.2')
252     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
253     autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
254                       atleast_version='0.4.0')
255     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',
256                       atleast_version='0.1.0')
257     autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP',
258                       atleast_version='2.0')
259     if Options.options.lv2:
260         autowaf.check_pkg(conf, 'lv2', uselib_store='LV2',
261                           atleast_version='1.0.0', mandatory=True)
262         autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD',
263                           atleast_version='0.14.0', mandatory=True)
264         autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD',
265                           atleast_version='0.8.0', mandatory=True)
266         autowaf.check_pkg(conf, 'sratom-0', uselib_store='SRATOM',
267                           atleast_version='0.2.0', mandatory=True)
268         autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV',
269                           atleast_version='0.14.0', mandatory=True)
270         autowaf.check_pkg(conf, 'suil-0', uselib_store='SUIL',
271                           atleast_version='0.6.0', mandatory=False)
272         conf.define ('LV2_SUPPORT', 1)
273
274 #    autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH',
275 #                      mandatory=False)
276     autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT',
277                       atleast_version='1.12.0', mandatory=False)
278     autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
279     autowaf.check_pkg(conf, 'flac', uselib_store='FLAC',
280                       atleast_version='1.2.1')
281     autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
282                       atleast_version='7.0.0')
283
284     # we don't try to detect this, since its part of our source tree
285
286     conf.define('HAVE_RUBBERBAND', 1) # controls whether we think we have it
287     conf.define('USE_RUBBERBAND', 1)  # controls whether we actually use it
288
289     conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
290
291     conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H',mandatory=False)
292     conf.check(header_name='sys/statvfs.h', define_name='HAVE_SYS_STATVFS_H',mandatory=False)
293
294     conf.check(header_name='jack/session.h', uselib = [ 'JACK' ],
295                define_name='HAVE_JACK_SESSION')
296
297     conf.check(header_name='unistd.h', define_name='HAVE_UNISTD',mandatory=False)
298
299     conf.check_cc(fragment = '''
300 #include <jack/jack.h>
301 void callback(jack_status_t code, const char* reason, void* arg) { return; }
302 int main(int argc, char **argv) {
303     jack_client_t* c;
304     jack_on_info_shutdown(c, callback, (void*) 0);
305     return 0;
306 }''',
307                   uselib= [ 'JACK' ],
308                   msg = 'Checking for jack_on_info_shutdown',
309                   define_name = 'HAVE_JACK_ON_INFO_SHUTDOWN',
310                   okmsg = 'present')
311
312     missing_jack_message = 'missing - a version of JACK that supports jack_port_set_latency_range() is required to compile Ardour3.'
313
314     conf.check_cc(fragment = '''
315 #include <jack/jack.h>
316 int main(int argc, char **argv) {
317     jack_port_t* p;
318     jack_latency_range_t r;
319     jack_port_set_latency_range(p, JackCaptureLatency, &r);
320     return 0;
321 }''',
322                   uselib = [ 'JACK' ],
323                   msg = 'Checking for new JACK latency API',
324                   okmsg = 'present',
325                   mandatory = True,
326                   errmsg = missing_jack_message)
327
328     conf.check_cc(fragment = '''
329 #include <jack/jack.h>
330 int main(int argc, char **argv) {
331    jack_port_type_get_buffer_size((jack_client_t*)0, "");
332    return 0;
333 }''',
334                   uselib = [ 'JACK' ],
335                   msg = 'Checking for new jack_port_type_get_buffer_size',
336                   okmsg = 'present',
337                   mandatory = True,
338                   errmsg = missing_jack_message)
339
340     if flac_supported():
341         conf.define ('HAVE_FLAC', 1)
342     if ogg_supported():
343         conf.define ('HAVE_OGG', 1)
344
345     conf.write_config_header('libardour-config.h', remove=False)
346
347     # Boost headers
348     autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')
349     autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp')
350     autowaf.check_header(conf, 'cxx', 'boost/scoped_ptr.hpp')
351     autowaf.check_header(conf, 'cxx', 'boost/ptr_container/ptr_list.hpp')
352
353
354 def build(bld):
355     # Library
356     obj              = bld(features = 'c cxx cshlib cxxshlib')
357     obj.source       = libardour_sources
358     obj.export_includes = ['.']
359     obj.includes     = ['.', '../surfaces/control_protocol', '..']
360     obj.name         = 'libardour'
361     obj.target       = 'ardour'
362     obj.uselib       = ['GLIBMM','GTHREAD','AUBIO','SIGCPP','XML','UUID',
363                         'JACK','SNDFILE','SAMPLERATE','LRDF','AUDIOUNITS',
364                         'OSX','BOOST','CURL','DL']
365     obj.use          = ['libpbd','libmidipp','libevoral','libvamphost',
366                         'libvampplugin','libtaglib','librubberband',
367                         'libaudiographer']
368     obj.vnum         = LIBARDOUR_LIB_VERSION
369     obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
370     obj.defines      = [
371         'PACKAGE="' + I18N_PACKAGE + '"',
372         'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
373         'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
374         'LOCALEDIR="' + os.path.join(os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
375         'PROGRAM_NAME="' + bld.env['PROGRAM_NAME'] + '"'
376         ]
377
378     #obj.source += ' st_stretch.cc st_pitch.cc '
379     #obj.uselib += ' SOUNDTOUCH '
380     #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
381
382     if bld.is_defined('HAVE_LILV') :
383         obj.source += ['lv2_plugin.cc', 'lv2_evbuf.c', 'uri_map.cc'] 
384         obj.uselib += ['LILV']
385         if bld.is_defined('HAVE_SUIL'):
386             obj.uselib += ['SUIL']
387
388     if bld.is_defined('WINDOWS_VST_SUPPORT'):
389         obj.source += [ 'windows_vst_plugin.cc']
390         obj.includes += [ '../fst' ]
391         obj.defines += [ 'WINDOWS_VST_SUPPORT' ]
392
393     if bld.is_defined('LXVST_SUPPORT'):
394         obj.source += [ 'lxvst_plugin.cc', 'linux_vst_support.cc', 'linux_vst_info_file.cc' ]
395         obj.defines += [ 'LXVST_SUPPORT' ]
396
397     if bld.is_defined('WINDOWS_VST_SUPPORT') or bld.is_defined('LXVST_SUPPORT'):
398         obj.source += [ 'session_vst.cc', 'vst_plugin.cc' ]
399
400     if bld.is_defined('HAVE_COREAUDIO'):
401         obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
402         obj.use    += ['libappleutility']
403
404     if bld.is_defined('AUDIOUNIT_SUPPORT'):
405         obj.source += [ 'audio_unit.cc' ]
406
407     if Options.options.fpu_optimization:
408         if (bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686'):
409             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions.s' ]
410         elif bld.env['build_target'] == 'x86_64':
411             obj.source += [ 'sse_functions_xmm.cc', 'sse_functions_64bit.s' ]
412
413     # i18n
414     if bld.is_defined('ENABLE_NLS'):
415         mo_files = bld.path.ant_glob('po/*.mo')
416         for mo in mo_files:
417             lang = os.path.basename(mo.srcpath()).replace('.mo', '')
418             bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
419                                         lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
420                            mo)
421
422     if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
423         # Unit tests
424         testobj              = bld(features = 'cxx cxxprogram')
425         testobj.source       = '''
426                 test/dummy_lxvst.cc
427                 test/test_util.cc
428                 test/test_needing_session.cc
429                 test/audio_region_test.cc
430                 test/test_globals.cc
431                 test/audio_region_read_test.cc
432                 test/automation_list_property_test.cc
433                 test/bbt_test.cc
434                 test/tempo_test.cc
435                 test/interpolation_test.cc
436                 test/midi_clock_slave_test.cc
437                 test/resampled_source_test.cc
438                 test/framewalk_to_beats_test.cc
439                 test/framepos_plus_beats_test.cc
440                 test/framepos_minus_beats_test.cc
441                 test/playlist_layering_test.cc
442                 test/playlist_read_test.cc
443                 test/playlist_equivalent_regions_test.cc
444                 test/control_surfaces_test.cc
445                 test/combine_regions_test.cc
446                 test/mtdm_test.cc
447                 test/testrunner.cc
448         '''.split()
449
450 # Tests that don't work
451 #                test/mantis_3356_test.cc
452
453         testobj.includes     = obj.includes + ['test', '../pbd']
454         testobj.uselib       = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
455                                 'SAMPLERATE','XML','LRDF','COREAUDIO']
456         testobj.use          = ['libpbd','libmidipp','libardour']
457         testobj.name         = 'libardour-tests'
458         testobj.target       = 'run-tests'
459         testobj.install_path = ''
460         testobj.defines      = [
461             'PACKAGE="libardour3test"',
462             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
463             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
464             'LOCALEDIR="' + os.path.join(
465                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
466             'VAMP_DIR="' + os.path.join(
467                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
468             ]
469         if bld.env['FPU_OPTIMIZATION']:
470             testobj.source += [ 'sse_functions_xmm.cc' ]
471             if (bld.env['build_target'] == 'i386'
472                 or bld.env['build_target'] == 'i686'):
473                 testobj.source += [ 'sse_functions.s' ]
474             elif bld.env['build_target'] == 'x86_64':
475                 testobj.source += [ 'sse_functions_64bit.s' ]
476
477         # Profiling
478         profilingobj = bld(features = 'cxx cxxprogram')
479         profilingobj.source = '''
480                 test/dummy_lxvst.cc
481                 test/profiling/runpc.cc
482         '''.split()
483
484         profilingobj.includes  = obj.includes
485         profilingobj.uselib    = ['CPPUNIT','SIGCPP','JACK','GLIBMM','GTHREAD',
486                              'SAMPLERATE','XML','LRDF','COREAUDIO']
487         profilingobj.use       = ['libpbd','libmidipp','libardour']
488         profilingobj.name      = 'libardour-profiling'
489         profilingobj.target    = 'run-profiling'
490         profilingobj.install_path = ''
491         profilingobj.defines      = [
492             'PACKAGE="libardour3profile"',
493             'DATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"',
494             'CONFIG_DIR="' + os.path.normpath(bld.env['SYSCONFDIR']) + '"',
495             'LOCALEDIR="' + os.path.join(
496                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"',
497             'VAMP_DIR="' + os.path.join(
498                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"'
499             ]
500         if bld.env['FPU_OPTIMIZATION']:
501             profilingobj.source += [ 'sse_functions_xmm.cc' ]
502             if (bld.env['build_target'] == 'i386'
503                 or bld.env['build_target'] == 'i686'):
504                 profilingobj.source += [ 'sse_functions.s' ]
505             elif bld.env['build_target'] == 'x86_64':
506                 profilingobj.source += [ 'sse_functions_64bit.s' ]
507
508 def shutdown():
509     autowaf.shutdown()
510
511 def i18n(bld):
512     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
513                        'Paul Davis')
514
515 def i18n_pot(bld):
516     autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
517                        'Paul Davis')
518
519 def i18n_po(bld):
520     autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
521                        'Paul Davis')
522
523 def i18n_mo(bld):
524     autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
525                        'Paul Davis')