forked from openslide/openslide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
55 lines (55 loc) · 1.03 KB
/
meson_options.txt
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
option(
'dicom',
type : 'feature',
value : 'auto',
description : 'Support DICOM format',
)
option(
'version_suffix',
type : 'string',
description : 'Suffix to append to the package version string',
)
option(
'test',
type : 'feature',
value : 'auto',
yield : true,
description : 'Build tests',
)
option(
'doc',
type : 'feature',
value : 'auto',
yield : true,
description : 'Enable building documentation (requires Doxygen)'
)
option(
'check_windows_abi_compat',
type : 'feature',
value : 'auto',
description : 'Test with 4-byte stack alignment on 32-bit Windows',
)
option(
'_export_internal_symbols',
type : 'boolean',
value : false,
description : 'For test suite; do not use',
)
option(
'_gcov',
type : 'boolean',
value : false,
description : 'For test suite; do not use',
)
option(
'_nonatomic_cloexec',
type : 'boolean',
value : false,
description : 'For CI; do not use',
)
option(
'_sanitize',
type : 'boolean',
value : false,
description : 'For test suite; do not use',
)