-
Notifications
You must be signed in to change notification settings - Fork 5
/
meson.build
238 lines (204 loc) · 5.86 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
# Copyright 2021-2024 David Robillard <[email protected]>
# SPDX-License-Identifier: 0BSD OR ISC
project(
'sratom',
['c'],
default_options: [
'b_ndebug=if-release',
'buildtype=release',
'c_std=c99',
],
license: 'ISC',
meson_version: '>= 0.56.0',
version: '0.6.17',
)
sratom_src_root = meson.current_source_dir()
sratom_build_root = meson.current_build_dir()
major_version = meson.project_version().split('.')[0]
version_suffix = '-@0@'.format(major_version)
versioned_name = 'sratom' + version_suffix
#######################
# Compilers and Flags #
#######################
# Required tools
pkg = import('pkgconfig')
cc = meson.get_compiler('c')
# Set global warning suppressions
warning_level = get_option('warning_level')
c_suppressions = []
if cc.get_id() == 'clang'
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-conversion',
'-Wno-implicit-float-conversion',
'-Wno-implicit-int-conversion',
'-Wno-padded',
'-Wno-shorten-64-to-32',
'-Wno-sign-conversion',
'-Wno-unsafe-buffer-usage',
]
if host_machine.system() == 'windows'
c_suppressions += [
'-Wno-deprecated-declarations',
'-Wno-format-nonliteral',
]
endif
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']
endif
elif cc.get_id() == 'gcc'
if warning_level == 'everything'
c_suppressions += [
'-Wno-cast-align',
'-Wno-cast-qual',
'-Wno-conversion',
'-Wno-inline',
'-Wno-padded',
'-Wno-suggest-attribute=pure',
'-Wno-unsuffixed-float-constants',
'-Wno-unused-const-variable',
]
if host_machine.system() == 'windows'
c_suppressions += ['-Wno-suggest-attribute=format']
endif
endif
elif cc.get_id() == 'msvc'
if warning_level == 'everything'
c_suppressions += [
'/wd4242', # conversion, possible loss of data
'/wd4365', # signed/unsigned mismatch
'/wd4514', # unreferenced inline function has been removed
'/wd4706', # assignment within conditional expression
'/wd4710', # function not inlined
'/wd4711', # function selected for automatic inline expansion
'/wd4820', # padding added after construct
'/wd5045', # will insert Spectre mitigation for memory load
]
endif
if warning_level in ['everything', '3', '2']
c_suppressions += [
'/wd4267', # conversion from size_t, possible loss of data
'/wd4996', # function or variable may be unsafe
]
endif
if warning_level in ['everything', '3', '2', '1']
c_suppressions += [
'/wd4244', # conversion from floating point, possible loss of data
]
endif
endif
c_suppressions = cc.get_supported_arguments(c_suppressions)
################
# Dependencies #
################
m_dep = cc.find_library('m', required: false)
serd_dep = dependency(
'serd-0',
fallback: 'serd',
version: '>= 0.30.10',
)
sord_dep = dependency(
'sord-0',
fallback: 'sord',
version: '>= 0.16.16',
)
lv2_dep = dependency(
'lv2',
fallback: 'lv2',
version: '>= 1.18.4',
)
##########################
# Platform Configuration #
##########################
# 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
###########
# Library #
###########
include_dirs = include_directories('include')
c_headers = files('include/sratom/sratom.h')
sources = files('src/sratom.c')
# Set appropriate arguments for building against the library type
extra_c_args = []
if get_option('default_library') == 'static'
extra_c_args = ['-DSRATOM_STATIC']
endif
# Build shared and/or static library
libsratom = library(
versioned_name,
sources,
c_args: c_suppressions + extra_c_args + ['-DSRATOM_INTERNAL'],
darwin_versions: [major_version + '.0.0', meson.project_version()],
dependencies: [m_dep, lv2_dep, serd_dep, sord_dep],
gnu_symbol_visibility: 'hidden',
include_directories: include_dirs,
install: true,
soversion: soversion,
version: meson.project_version(),
)
# Declare dependency for internal meson dependants
sratom_dep = declare_dependency(
compile_args: extra_c_args,
dependencies: [m_dep, lv2_dep, serd_dep, sord_dep],
include_directories: include_dirs,
link_with: libsratom,
)
# Generage pkg-config file for external dependants
pkg.generate(
libsratom,
description: 'Small library for serializing LV2 atoms',
extra_cflags: extra_c_args,
filebase: versioned_name,
name: 'Sratom',
requires: ['serd-0', 'sord-0', 'lv2'],
subdirs: [versioned_name],
version: meson.project_version(),
)
# Override pkg-config dependency for internal meson dependants
meson.override_dependency(versioned_name, sratom_dep)
# Install header to a versioned include directory
install_headers(c_headers, subdir: versioned_name / 'sratom')
# Display top-level summary (before subdirectories to appear first)
if not meson.is_subproject()
summary(
{
'Tests': not get_option('tests').disabled(),
},
bool_yn: true,
section: 'Components',
)
summary(
{
'Install prefix': get_option('prefix'),
'Headers': get_option('prefix') / get_option('includedir'),
'Libraries': get_option('prefix') / get_option('libdir'),
},
section: 'Directories',
)
endif
###########
# Support #
###########
if not get_option('tests').disabled()
subdir('test')
endif
if not get_option('docs').disabled()
subdir('doc')
endif