new file
[ardour.git] / libs / ardour / wscript
1 #!/usr/bin/env python
2 import autowaf
3 import os
4 import glob
5 import Options
6 import re
7 import subprocess
8
9 # Version of this package (even if built as a child)
10 MAJOR = '3'
11 MINOR = '0'
12 MICRO = '0'
13 LIBARDOUR_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
14
15 # Library version (UNIX style major, minor, micro)
16 # major increment <=> incompatible changes
17 # minor increment <=> compatible changes (additions)
18 # micro increment <=> no interface changes
19 LIBARDOUR_LIB_VERSION = '3.0.0'
20
21 # default state file version for this build
22 CURRENT_SESSION_FILE_VERSION = 3000
23
24 # Variables for 'waf dist'
25 APPNAME = 'libardour'
26 VERSION = LIBARDOUR_VERSION
27
28 # Mandatory variables
29 srcdir = '.'
30 blddir = '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_port.cc',
43         'audio_region_importer.cc',
44         'audio_track.cc',
45         'audio_track_importer.cc',
46         'audioanalyser.cc',
47         'audioengine.cc',
48         'audiofile_tagger.cc',
49         'audiofilesource.cc',
50         'audioregion.cc',
51         'audiosource.cc',
52         'auditioner.cc',
53         'automatable.cc',
54         'automation.cc',
55         'automation_control.cc',
56         'automation_list.cc',
57         'beats_frames_converter.cc',
58         'broadcast_info.cc',
59         'buffer.cc',
60         'buffer_set.cc',
61         'bundle.cc',
62         'butler.cc',
63         'chan_count.cc',
64         'chan_mapping.cc',
65         'configuration.cc',
66         'config_text.cc',
67         'control_protocol_manager.cc',
68         'control_protocol_search_path.cc',
69         'crossfade.cc',
70         'cycle_timer.cc',
71         'default_click.cc',
72         'debug.cc',
73         'delivery.cc',
74         'directory_names.cc',
75         'diskstream.cc',
76         'element_import_handler.cc',
77         'element_importer.cc',
78         'enums.cc',
79         'event_type_map.cc',
80         'export_channel.cc',
81         'export_channel_configuration.cc',
82         'export_filename.cc',
83         'export_format_base.cc',
84         'export_format_manager.cc',
85         'export_format_specification.cc',
86         'export_formats.cc',
87         'export_graph_builder.cc',
88         'export_handler.cc',
89         'export_preset.cc',
90         'export_profile_manager.cc',
91         'export_status.cc',
92         'export_timespan.cc',
93         'file_source.cc',
94         'filename_extensions.cc',
95         'filesystem_paths.cc',
96         'filter.cc',
97         'find_session.cc',
98         'gain.cc',
99         'globals.cc',
100         'import.cc',
101         'internal_return.cc',
102         'internal_send.cc',
103         'interpolation.cc',
104         'io.cc',
105         'io_processor.cc',
106         'jack_slave.cc',
107         'ladspa_plugin.cc',
108         'location.cc',
109         'location_importer.cc',
110         'meter.cc',
111         'midi_buffer.cc',
112         'midi_clock_slave.cc',
113         'midi_diskstream.cc',
114         'midi_model.cc',
115         'midi_patch_manager.cc',
116         'midi_playlist.cc',
117         'midi_port.cc',
118         'midi_region.cc',
119         'midi_ring_buffer.cc',
120         'midi_source.cc',
121         'midi_state_tracker.cc',
122         'midi_stretch.cc',
123         'midi_track.cc',
124         'midi_ui.cc',
125         'mix.cc',
126         'mtc_slave.cc',
127         'mtdm.cc',
128         'mute_master.cc',
129         'named_selection.cc',
130         'onset_detector.cc',
131         'panner.cc',
132         'pcm_utils.cc',
133         'pi_controller.cc',
134         'playlist.cc',
135         'playlist_factory.cc',
136         'plugin.cc',
137         'plugin_insert.cc',
138         'plugin_manager.cc',
139         'port.cc',
140         'port_insert.cc',
141         'port_set.cc',
142         'processor.cc',
143         'quantize.cc',
144         'rc_configuration.cc',
145         'recent_sessions.cc',
146         'region.cc',
147         'region_command.cc',
148         'region_factory.cc',
149         'resampled_source.cc',
150         'return.cc',
151         'reverse.cc',
152         'route.cc',
153         'route_group.cc',
154         'route_group_member.cc',
155         'rb_effect.cc',
156         'send.cc',
157         'session.cc',
158         'session_butler.cc',
159         'session_click.cc',
160         'session_command.cc',
161         'session_configuration.cc',
162         'session_directory.cc',
163         'session_events.cc',
164         'session_export.cc',
165         'session_handle.cc',
166         'session_metadata.cc',
167         'session_midi.cc',
168         'session_playlists.cc',
169         'session_process.cc',
170         'session_rtevents.cc',
171         'session_state.cc',
172         'session_state_utils.cc',
173         'session_time.cc',
174         'session_transport.cc',
175         'session_utils.cc',
176         'slave.cc',
177         'smf_source.cc',
178         'sndfile_helpers.cc',
179         'sndfileimportable.cc',
180         'sndfilesource.cc',
181         'source.cc',
182         'source_factory.cc',
183         'strip_silence.cc',
184         'svn_revision.cc',
185         'tape_file_matcher.cc',
186         'template_utils.cc',
187         'tempo.cc',
188         'tempo_map_importer.cc',
189         'ticker.cc',
190         'track.cc',
191         'transient_detector.cc',
192         'user_bundle.cc',
193         'utils.cc',
194         'version.cc'
195 ]
196
197 def flac_supported():
198         cmd = subprocess.Popen ("sndfile-info testfile.flac", 
199                                 stdout = subprocess.PIPE,
200                                 stderr = subprocess.STDOUT, shell = True)
201         out = cmd.communicate()[0];
202         return re.search ('unknown format', out) == None
203
204 def ogg_supported():
205         cmd = subprocess.Popen ("sndfile-info testfile.ogg", 
206                                 stdout = subprocess.PIPE,
207                                 stderr = subprocess.STDOUT, shell = True)
208         out = cmd.communicate()[0];
209         return re.search ('unknown format', out) == None
210
211 def set_options(opt):
212         autowaf.set_options(opt)
213
214 def configure(conf):
215         autowaf.build_version_files(path_prefix+'ardour/version.h', path_prefix+'version.cc',
216                         'libardour3', MAJOR, MINOR, MICRO)
217         autowaf.configure(conf)
218         conf.check_tool('compiler_cxx gas')
219         autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO', atleast_version='0.3.2')
220         autowaf.check_pkg(conf, 'jack', uselib_store='JACK', atleast_version='0.109.0')
221         autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
222         autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF', atleast_version='0.4.0')
223         autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE', atleast_version='0.1.0')
224         autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0')
225         autowaf.check_pkg(conf, 'slv2', uselib_store='SLV2', atleast_version='0.6.4', mandatory=False)
226         autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18')
227         autowaf.check_pkg(conf, 'soundtouch-1.0', uselib_store='SOUNDTOUCH', mandatory=False)
228         autowaf.check_pkg(conf, 'cppunit', uselib_store='CPPUNIT', atleast_version='1.12.0', mandatory=False)
229         autowaf.check_pkg(conf, 'ogg', uselib_store='OGG', atleast_version='1.1.2')
230         autowaf.check_pkg(conf, 'flac', uselib_store='FLAC', atleast_version='1.2.1')
231
232         # we don't try to detect this, since its part of our source tree
233
234         conf.define('HAVE_RUBBERBAND', 1) # controls whether we think we have it
235         conf.define('USE_RUBBERBAND', 1)  # controls whether we actually use it
236
237         conf.define('CURRENT_SESSION_FILE_VERSION', CURRENT_SESSION_FILE_VERSION)
238
239         conf.check(header_name='sys/vfs.h', define_name='HAVE_SYS_VFS_H')
240         conf.check(header_name='wordexp.h', define_name='HAVE_WORDEXP')
241         
242         if flac_supported():
243                 conf.define ('HAVE_FLAC', 1)
244                 autowaf.display_msg(conf, 'Checking for FLAC support', True)
245         else:
246                 autowaf.display_msg(conf, 'Checking for FLAC support', False)
247         if ogg_supported():
248                 conf.define ('HAVE_OGG', 1)
249                 autowaf.display_msg(conf, 'Checking for Ogg/Vorbis support', True)
250         else:
251                 autowaf.display_msg(conf, 'Checking for Ogg/Vorbis Support', False)
252
253         conf.write_config_header('libardour-config.h')
254
255         # Boost headers
256         autowaf.check_header(conf, 'boost/shared_ptr.hpp')
257         autowaf.check_header(conf, 'boost/weak_ptr.hpp')
258
259
260 def build(bld):
261         # Library
262         obj              = bld.new_task_gen('cxx', 'shlib')
263         obj.source       = libardour_sources
264         obj.export_incdirs = ['.']
265         obj.includes     = ['.', '../surfaces/control_protocol', '..']
266         obj.name         = 'libardour'
267         obj.target       = 'ardour'
268         obj.uselib       = 'GLIBMM GTHREAD AUBIO SIGCPP XML UUID JACK SNDFILE SAMPLERATE LRDF OSX COREAUDIO'
269         obj.uselib_local = 'libpbd libmidipp libevoral libvamphost libvampplugin libtaglib librubberband libaudiographer'
270         obj.vnum         = LIBARDOUR_LIB_VERSION
271         obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
272         obj.cxxflags     = ['-DPACKAGE="libardour3"']
273         obj.cxxflags     += ['-DDATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"']
274         obj.cxxflags     += ['-DCONFIG_DIR="' + os.path.normpath(bld.env['CONFIGDIR']) + '"']
275         obj.cxxflags     += ['-DMODULE_DIR="' + os.path.normpath(bld.env['LIBDIR']) + '"']
276         obj.cxxflags     += ['-DLOCALEDIR="' + os.path.join(
277                         os.path.normpath(bld.env['DATADIR']), 'locale') + '"']
278         obj.cxxflags     += ['-DVAMP_DIR="' + os.path.join(
279                         os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"']
280         #obj.source += ' st_stretch.cc st_pitch.cc '
281         #obj.uselib += ' SOUNDTOUCH '
282         #obj.add_objects = 'default/libs/surfaces/control_protocol/smpte_1.o'
283         
284         obj.env.append_value('LINKFLAGS', 'default/libs/surfaces/control_protocol/smpte_1.o')
285         #
286         #       TODO: The above is an ugly hack that shouldn't be needed.  We really need
287         #       to refactor SMPTE out of libardour_cp to get rid of that circular dependency
288         #       alltogether.
289         #
290         if bld.env['HAVE_SLV2']:
291                 obj.source += [ 'lv2_plugin.cc', 'lv2_event_buffer.cc', 'uri_map.cc' ]
292                 obj.uselib += ' SLV2 '
293                 
294         if bld.env['VST']:
295                 obj.source += [ 'vst_plugin.cc', 'session_vst.cc' ]
296
297         if bld.env['HAVE_COREAUDIO'] and bld.env['COREAUDIO']:
298                 obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]
299
300         if bld.env['HAVE_AUDIOUNITS'] or bld.env['HAVE_COREAUDIO']:
301                 obj.uselib_local += ' libappleutility'  
302
303         if bld.env['HAVE_AUDIOUNITS'] and bld.env['AUDIOUNITS']:
304                 obj.source += [ 'audio_unit.cc' ]
305
306         if bld.env['FPU_OPTIMIZATION']:
307                 obj.source += [ 'sse_functions_xmm.cc' ]
308                 if bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686':
309                         obj.source += [ 'sse_functions.s' ]
310                 elif bld.env['build_target'] == 'x86_64':
311                         obj.source += [ 'sse_functions_64bit.s' ]
312
313         # i18n
314         if bld.env['ENABLE_NLS']:
315                 mo_files = glob.glob (os.path.join (bld.get_curdir(), 'po/*.mo'))
316                 for mo in mo_files:
317                         lang = os.path.basename (mo).replace ('.mo', '')
318                         bld.install_as (os.path.join (bld.env['PREFIX'], 'share', 'locale', lang, 'LC_MESSAGES', APPNAME + '.mo'), mo)
319
320         if bld.env['BUILD_TESTS'] and bld.env['HAVE_CPPUNIT']:
321                 # Unit tests
322                 testobj              = bld.new_task_gen('cxx', 'program')
323                 testobj.source       = '''
324                         test/bbt_test.cpp
325                         test/interpolation_test.cpp
326                         test/midi_clock_slave_test.cpp
327                         test/testrunner.cpp
328                 '''.split()
329                 testobj.includes     = obj.includes + ['../pbd/']
330                 testobj.uselib       = 'CPPUNIT SIGCPP JACK GLIBMM GTHREAD SAMPLERATE XML LRDF COREAUDIO'
331                 testobj.uselib_local = 'libpbd libmidipp libardour'
332                 testobj.name         = 'libardour-tests'
333                 testobj.target       = 'run-tests'
334                 testobj.install_path = ''
335                 testobj.cxxflags     = ['-DPACKAGE="libardour3test"']
336                 testobj.cxxflags     += ['-DDATA_DIR="' + os.path.normpath(bld.env['DATADIR']) + '"']
337                 testobj.cxxflags     += ['-DCONFIG_DIR="' + os.path.normpath(bld.env['CONFIGDIR']) + '"']
338                 testobj.cxxflags     += ['-DMODULE_DIR="' + os.path.normpath(bld.env['LIBDIR']) + '"']
339                 testobj.cxxflags     += ['-DLOCALEDIR="' + os.path.join(
340                                 os.path.normpath(bld.env['DATADIR']), 'locale') + '"']
341                 testobj.cxxflags     += ['-DVAMP_DIR="' + os.path.join(
342                                 os.path.normpath(bld.env['LIBDIR']), 'ardour3', 'vamp') + '"']
343                 if bld.env['FPU_OPTIMIZATION']:
344                         testobj.source += [ 'sse_functions_xmm.cc' ]
345                         if bld.env['build_target'] == 'i386' or bld.env['build_target'] == 'i686':
346                                 testobj.source += [ 'sse_functions.s' ]
347                         elif bld.env['build_target'] == 'x86_64':
348                                 testobj.source += [ 'sse_functions_64bit.s' ]
349
350 def shutdown():
351         autowaf.shutdown()
352
353 def i18n(bld):
354         autowaf.build_i18n (bld, 'libs/ardour', APPNAME, libardour_sources)