-
Notifications
You must be signed in to change notification settings - Fork 116
/
meson.build
233 lines (206 loc) · 7.21 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
project('AppStream', 'c',
meson_version: '>=0.62',
default_options: ['c_std=c11', 'cpp_std=gnu++17'],
license: 'LGPL-2.1-or-later',
version: '1.0.5',
)
cc = meson.get_compiler('c')
source_root = meson.project_source_root()
as_version = meson.project_version()
as_api_level = '5'
varr = as_version.split('.')
as_major_version = varr[0]
as_minor_version = varr[1]
as_micro_version = varr[2]
as_data_installdir = get_option('prefix') / get_option('datadir') / 'appstream'
#
# Configure files
#
conf = configuration_data()
conf.set('AS_MAJOR_VERSION_CONF', as_major_version)
conf.set('AS_MINOR_VERSION_CONF', as_minor_version)
conf.set('AS_MICRO_VERSION_CONF', as_micro_version)
conf.set_quoted('PACKAGE_VERSION', as_version)
conf.set_quoted('GETTEXT_PACKAGE', 'appstream')
conf.set_quoted('LOCALEDIR',
get_option('prefix') / get_option('localedir'))
conf.set_quoted('LOCALSTATEDIR',
get_option('prefix') / get_option('localstatedir'))
conf.set_quoted('LIBEXECDIR',
get_option('prefix') / get_option('libexecdir'))
conf.set_quoted('LIBDIR',
get_option('prefix') / get_option('libdir'))
conf.set_quoted('AS_DATADIR',
as_data_installdir)
conf.set_quoted('BINDIR',
get_option('prefix') / get_option('bindir'))
conf.set_quoted('SYSCONFDIR',
get_option('prefix') / get_option('sysconfdir'))
conf.set('_DEFAULT_SOURCE', true)
conf.set('HAVE_APT_SUPPORT', get_option('apt-support'))
conf.set('HAVE_STEMMING', get_option('stemming'))
conf.set('HAVE_SYSTEMD', get_option('systemd'))
conf.set('HAVE_SVG_SUPPORT', get_option('svg-support'))
conf.set('HAVE_ZSTD', get_option('zstd-support'))
configure_file(output: 'config.h', configuration: conf)
root_inc_dir = include_directories ('.')
#
# Custom C flags
#
if cc.get_id() == 'msvc'
error('MSVC is not supported as it does not support modern C11 features and __attribute__((cleanup))')
endif
sanitizer_libs = []
if get_option('maintainer')
maintainer_c_args = ['-Werror',
'-Wall',
'-Wextra',
'-Wcast-align',
'-Wno-uninitialized',
'-Wempty-body',
'-Winit-self',
'-Wnull-dereference',
'-Wfloat-equal',
'-Winline',
'-Wno-error=comment',
'-Werror=format-security',
# used in rsvg's headers, so we can not make this fatal yet
'-Wno-error=expansion-to-defined',
]
add_project_arguments(maintainer_c_args, language: 'c')
add_project_arguments(maintainer_c_args, language: 'cpp')
endif
if get_option('static-analysis') and host_machine.system() != 'windows'
if cc.get_id() != 'gcc'
error('You need to compile with GCC to run the static analyzer!')
endif
# enable static analyzer
add_project_arguments(['-fanalyzer'], language : 'c')
# make false-positive non-fatal with GCC 12 for now
if cc.version().version_compare('>11<13')
add_project_arguments(['-Wno-error=analyzer-use-of-uninitialized-value'], language : 'c')
endif
# g_error has a deliberate infinite loop, so we have to suppress the new warning for now
if cc.version().version_compare('>13<15')
add_project_arguments(['-Wno-error=analyzer-infinite-loop'], language : 'c')
endif
endif
# a few compiler warning flags we always want enabled
add_project_arguments(
cc.get_supported_arguments([
'-Werror=shadow',
'-Werror=empty-body',
'-Werror=strict-prototypes',
'-Werror=missing-prototypes',
'-Werror=implicit-function-declaration',
'-Werror=pointer-arith',
'-Werror=missing-declarations',
'-Werror=return-type',
'-Werror=int-conversion',
'-Werror=incompatible-pointer-types',
'-Werror=misleading-indentation',
'-Werror=missing-include-dirs',
'-Werror=declaration-after-statement',
'-Werror=format-security',
'-Wno-missing-field-initializers',
'-Wno-error=missing-field-initializers',
'-Wno-unused-parameter',
'-Wno-error=unused-parameter',
]),
language: 'c'
)
add_project_arguments(
'-Wno-unused-parameter',
'-Werror=empty-body',
'-Werror=pointer-arith',
'-Werror=init-self',
'-Werror=missing-declarations',
'-Werror=return-type',
'-Werror=misleading-indentation',
'-Werror=format-security',
language: 'cpp'
)
# Vendor extensions in system headers
if host_machine.system() != 'netbsd'
# on NetBSD, defining POSIX_C_SOURCE *removes* non-POSIX symbols from namespace,
# while on all other systems it adds them. Hence we only define this when not on NetBSD.
add_project_arguments('-D_POSIX_C_SOURCE=201710L', language: 'c')
endif
if host_machine.system() == 'darwin'
# See https://github.com/ximion/appstream/issues/551
add_project_arguments('-D_DARWIN_C_SOURCE', language: 'c')
endif
if cc.get_id() == 'clang'
# Clang doesn't understand autofree helpers on GMutexLocker and thinks
# these variables are irrelevant, so this warning when used with Clang
# gives many false-positives
add_project_arguments(
'-Wno-unused-variable',
language: 'c'
)
endif
add_project_arguments('-DAS_COMPILATION', language: 'c')
#
# Dependencies
#
glib_dep = dependency('glib-2.0', version: '>= 2.62')
gobject_dep = dependency('gobject-2.0', version: '>= 2.62')
gio_dep = dependency('gio-2.0', version: '>= 2.62')
curl_dep = dependency('libcurl', version: '>= 7.62')
xml2_dep = dependency('libxml-2.0')
yaml_dep = dependency('yaml-0.1')
xmlb_dep = dependency('xmlb', version: '>= 0.3.14',
fallback: ['libxmlb', 'libxmlb_dep'],
default_options: ['gtkdoc=false', 'introspection=false'])
if get_option('zstd-support')
zstd_dep = dependency('libzstd', required: get_option('zstd-support'))
else
zstd_dep = dependency('', required: false)
endif
if get_option('systemd')
libsystemd_dep = dependency('libsystemd', required: get_option('systemd'))
else
libsystemd_dep = dependency('', required: false)
endif
if get_option ('gir')
# ensure we have a version of GIR that isn't broken with Meson
# (prior versions failed when any non-GObject library was linked)
dependency('gobject-introspection-1.0', version: '>=1.56')
endif
stemmer_inc_dirs = include_directories()
if get_option('stemming')
stemmer_lib = cc.find_library('stemmer', required: true)
stemmer_inc_dirs = include_directories(['/usr/include'])
if not cc.has_header('libstemmer.h')
if cc.has_header('libstemmer/libstemmer.h')
stemmer_inc_dirs = include_directories('/usr/include/libstemmer')
else
error('Unable to find Snowball header "libstemmer.h". Please ensure libstemmer/Snowball is installed properly in order to continue.')
endif
endif
endif
# use gperf for faster string -> enum matching
gperf = find_program('gperf')
#
# Modules
#
fs = import('fs')
glib = import('gnome')
i18n = import('i18n')
pkgc = import('pkgconfig')
#
# Directories
#
subdir('src/')
if get_option('compose')
subdir('compose/')
endif
subdir('tools/')
subdir('po/')
subdir('data/')
subdir('contrib/')
subdir('docs/')
subdir('tests/')
if get_option('qt')
subdir('qt/')
endif