-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathmeson_options.txt
More file actions
42 lines (42 loc) · 992 Bytes
/
meson_options.txt
File metadata and controls
42 lines (42 loc) · 992 Bytes
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
option(
'enable-bgets-workaround',
type: 'boolean',
value: false,
description: 'Enable workaround that renames bgets function to bgetstring',
)
option(
'enable-docs',
type: 'boolean',
value: false,
description: 'Generate and install documentation',
)
option(
'enable-fuzzing',
type: 'boolean',
value: false,
description: 'Build libFuzzer fuzz targets (requires clang)',
)
option(
'enable-old-api',
type: 'boolean',
value: false,
description: 'Enable backward compatibility macros for pre-1.0 API',
)
option(
'enable-tests',
type: 'boolean',
value: false,
description: 'Build unit tests',
)
option(
'enable-utf8',
type: 'boolean',
value: true,
description: 'Build bstring library with UTF-8 support',
)
option(
'fuzz-link-arg',
type: 'string',
value: '-fsanitize=fuzzer,address',
description: 'Linker flag used for fuzz targets (ClusterFuzzLite passes LIB_FUZZING_ENGINE here)',
)