-
Notifications
You must be signed in to change notification settings - Fork 20
/
meson.build
386 lines (333 loc) · 10 KB
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
# Copyright 2021-2024 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
project(
'lilv',
['c'],
default_options: [
'b_ndebug=if-release',
'buildtype=release',
'c_std=c99',
'cpp_std=c++11',
],
license: 'ISC',
meson_version: '>= 0.56.0',
version: '0.24.25',
)
lilv_src_root = meson.current_source_dir()
lilv_build_root = meson.current_build_dir()
major_version = meson.project_version().split('.')[0]
version_suffix = '-@0@'.format(major_version)
versioned_name = 'lilv' + version_suffix
#######################
# Compilers and Flags #
#######################
# Required tools
pkg = import('pkgconfig')
cc = meson.get_compiler('c')
# Enable C++ support if bindings aren't disabled
if not get_option('bindings_cpp').disabled()
if add_languages(['cpp'], native: false, required: false)
cpp = meson.get_compiler('cpp')
endif
endif
# Set global warning suppressions
warning_level = get_option('warning_level')
c_suppressions = []
if cc.get_id() in ['clang', 'emscripten']
if warning_level == 'everything'
c_suppressions += [
'-Wno-cast-align',
'-Wno-cast-function-type-strict',
'-Wno-cast-qual',
'-Wno-declaration-after-statement',
'-Wno-documentation-unknown-command',
'-Wno-double-promotion',
'-Wno-float-equal',
'-Wno-format-nonliteral',
'-Wno-implicit-float-conversion',
'-Wno-implicit-int-conversion',
'-Wno-padded',
'-Wno-reserved-id-macro',
'-Wno-shorten-64-to-32',
'-Wno-sign-conversion',
'-Wno-switch-default',
'-Wno-switch-enum',
'-Wno-unsafe-buffer-usage',
'-Wno-vla',
]
if not meson.is_cross_build()
c_suppressions += ['-Wno-poison-system-directories']
endif
endif
if warning_level in ['everything', '3']
c_suppressions += ['-Wno-nullability-extension']
if host_machine.system() == 'freebsd'
c_suppressions += ['-Wno-c11-extensions']
elif host_machine.system() == 'darwin'
c_suppressions += ['-Wno-unused-macros']
elif host_machine.system() == 'windows'
c_suppressions += [
'-Wno-deprecated-declarations',
'-Wno-nonportable-system-include-path',
'-Wno-unused-macros',
]
endif
endif
elif cc.get_id() == 'gcc'
if warning_level == 'everything'
c_suppressions += [
'-Wno-cast-align',
'-Wno-cast-qual',
'-Wno-conversion',
'-Wno-double-promotion',
'-Wno-float-equal',
'-Wno-format-nonliteral',
'-Wno-format-truncation',
'-Wno-inline',
'-Wno-padded',
'-Wno-stack-protector',
'-Wno-strict-overflow',
'-Wno-suggest-attribute=const',
'-Wno-suggest-attribute=pure',
'-Wno-switch-default',
'-Wno-switch-enum',
'-Wno-unsuffixed-float-constants',
'-Wno-unused-const-variable',
'-Wno-unused-parameter',
'-Wno-vla',
]
endif
if warning_level in ['everything', '3']
c_suppressions += ['-Wno-pedantic']
endif
if host_machine.system() == 'windows'
c_suppressions += [
'-Wno-bad-function-cast',
'-Wno-unused-macros',
]
endif
elif cc.get_id() == 'msvc'
c_suppressions += [
'/experimental:external',
'/external:W0',
'/external:anglebrackets',
]
if warning_level == 'everything'
c_suppressions += [
'/wd4061', # enumerator in switch is not explicitly handled
'/wd4191', # unsafe conversion from FARPROC
'/wd4365', # signed/unsigned mismatch
'/wd4514', # unreferenced inline function has been removed
'/wd4710', # function not inlined
'/wd4711', # function selected for automatic inline expansion
'/wd4774', # format string is not a string literal
'/wd4800', # implicit conversion to bool
'/wd4820', # padding added after construct
'/wd5045', # will insert Spectre mitigation for memory load
]
endif
if warning_level in ['everything', '3']
c_suppressions += [
'/wd4090', # different const qualifiers
'/wd4706', # assignment within conditional expression
]
endif
if warning_level in ['everything', '3', '2']
c_suppressions += [
'/wd4244', # conversion from floating point, possible loss of data
'/wd4267', # conversion from size_t, possible loss of data
'/wd4996', # POSIX name for this item is deprecated
]
endif
endif
c_suppressions = cc.get_supported_arguments(c_suppressions)
##########################
# Platform Configuration #
##########################
platform_defines = ['-DLILV_VERSION="@0@"'.format(meson.project_version())]
if host_machine.system() in ['gnu', 'linux']
platform_defines += [
'-D_POSIX_C_SOURCE=200809L',
]
endif
default_lv2_path = get_option('default_lv2_path')
if default_lv2_path == ''
if host_machine.system() == 'darwin'
lv2_dirs = [
'~/.lv2',
'~/Library/Audio/Plug-Ins/LV2',
'/usr/local/lib/lv2',
'/usr/lib/lv2',
'/Library/Audio/Plug-Ins/LV2',
]
default_lv2_path = ':'.join(lv2_dirs)
elif host_machine.system() == 'haiku'
default_lv2_path = ':'.join(['~/.lv2', '/boot/common/add-ons/lv2'])
elif host_machine.system() == 'windows'
lv2_dirs = ['%%APPDATA%%\\\\LV2', '%%COMMONPROGRAMFILES%%\\\\LV2']
default_lv2_path = ';'.join(lv2_dirs)
else
lv2_dirs = [
'~' / '.lv2',
'/usr/local' / get_option('libdir') / 'lv2',
'/usr' / get_option('libdir') / 'lv2',
]
default_lv2_path = ':'.join(lv2_dirs)
endif
endif
platform_defines += ['-DLILV_DEFAULT_LV2_PATH="@0@"'.format(default_lv2_path)]
# Use versioned name everywhere to support parallel major version installations
if host_machine.system() == 'windows'
if get_option('default_library') == 'both'
error('default_library=both is not supported on Windows')
endif
soversion = ''
else
soversion = meson.project_version().split('.')[0]
endif
add_project_arguments(platform_defines, language: ['c'])
################
# Dependencies #
################
m_dep = cc.find_library('m', required: false)
dl_dep = cc.find_library('dl', required: false)
zix_dep = dependency('zix-0', fallback: 'zix', version: '>= 0.4.0')
serd_dep = dependency('serd-0', fallback: 'serd', version: '>= 0.30.10')
sord_dep = dependency('sord-0', fallback: 'sord', version: '>= 0.16.15')
lv2_dep = dependency('lv2', fallback: 'lv2', version: '>= 1.18.2')
sratom_dep = dependency('sratom-0', fallback: 'sratom', version: '>= 0.6.10')
###########
# Library #
###########
c_headers = files('include/lilv/lilv.h')
cpp_headers = files('include/lilv/lilvmm.hpp')
sources = files(
'src/collections.c',
'src/instance.c',
'src/lib.c',
'src/node.c',
'src/plugin.c',
'src/pluginclass.c',
'src/port.c',
'src/query.c',
'src/scalepoint.c',
'src/state.c',
'src/ui.c',
'src/util.c',
'src/world.c',
)
common_dependencies = [
dl_dep,
lv2_dep,
m_dep,
serd_dep,
sord_dep,
sratom_dep,
zix_dep,
]
# Set appropriate arguments for building against the library type
extra_c_args = []
if get_option('default_library') == 'static'
extra_c_args = ['-DLILV_STATIC']
endif
# Build main shared and/or static library
liblilv = library(
versioned_name,
sources,
c_args: c_suppressions + extra_c_args + ['-DLILV_INTERNAL'],
darwin_versions: [major_version + '.0.0', meson.project_version()],
dependencies: common_dependencies,
gnu_symbol_visibility: 'hidden',
include_directories: include_directories('include', 'src'),
install: true,
soversion: soversion,
version: meson.project_version(),
)
# Declare dependency for internal meson dependants
lilv_dep = declare_dependency(
compile_args: extra_c_args,
dependencies: common_dependencies,
include_directories: include_directories('include'),
link_with: liblilv,
)
# Generage pkg-config file for external dependants
pkg.generate(
liblilv,
description: 'Library for hosting LV2 plugins',
extra_cflags: extra_c_args,
filebase: versioned_name,
name: 'Lilv',
requires: ['lv2'],
subdirs: [versioned_name],
version: meson.project_version(),
)
# Override pkg-config dependency for internal meson dependants
meson.override_dependency(versioned_name, lilv_dep)
# Install headers to a versioned include directory
install_headers(c_headers, subdir: versioned_name / 'lilv')
install_headers(cpp_headers, subdir: versioned_name / 'lilv')
# Display top-level summary (before subdirectories to appear first)
if not meson.is_subproject()
summary(
{
'Tests': not get_option('tests').disabled(),
'Tools': not get_option('tools').disabled(),
},
bool_yn: true,
section: 'Components',
)
summary('Default LV2_PATH', default_lv2_path, section: 'Configuration')
summary(
{
'Install prefix': get_option('prefix'),
'Headers': get_option('prefix') / get_option('includedir'),
'Libraries': get_option('prefix') / get_option('libdir'),
'Executables': get_option('prefix') / get_option('bindir'),
'Man pages': get_option('prefix') / get_option('mandir'),
},
section: 'Directories',
)
endif
#########
# Tools #
#########
if not get_option('tools').disabled()
subdir('tools')
endif
############
# Bindings #
############
if not get_option('bindings_py').disabled()
subdir('bindings/python')
endif
###########
# Support #
###########
if not get_option('docs').disabled()
subdir('doc')
endif
if not get_option('tests').disabled()
# Get or build a static library for linking internal tests
if get_option('default_library') == 'both'
liblilv_static = liblilv.get_static_lib()
elif get_option('default_library') == 'shared'
liblilv_static = static_library(
versioned_name,
sources,
include_directories: include_directories('include', 'src'),
c_args: c_suppressions + ['-DLILV_INTERNAL', '-DLILV_STATIC'],
dependencies: common_dependencies,
gnu_symbol_visibility: 'default',
)
else
liblilv_static = liblilv
endif
lilv_static_dep = declare_dependency(
compile_args: extra_c_args,
dependencies: common_dependencies,
include_directories: include_directories('include'),
link_with: liblilv_static,
)
# Build and run tests against static library
subdir('test')
endif