-
Notifications
You must be signed in to change notification settings - Fork 14
/
meson_options.txt
60 lines (58 loc) · 1.3 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
56
57
58
59
60
# Optional features
option('with-docs',
type: 'combo',
choices: ['auto', 'true', 'false'],
description: 'build documentation'
)
option('enable-gir',
type: 'combo',
choices: ['auto', 'true', 'false'],
description: 'gobject introspection .gir generation'
)
option('enable-vapi',
type: 'boolean',
value: 'true',
description: 'Vala .vapi generation - depends on introspection'
)
option('gi-docgen',
type: 'feature',
value: 'auto',
description: 'Build developer documentation (uses gi-docgen)'
)
# Compiler extensions
option('enable-mmx',
type: 'boolean',
value: 'true',
description: 'MMX support - disables all compiler extensons'
)
option('enable-sse',
type: 'boolean',
value: 'true',
description: 'SSE support - depends on MMX'
)
option('enable-sse2',
type: 'boolean',
value: 'true',
description: 'SSE2 support - depends on SSE'
)
option('enable-sse4_1',
type: 'boolean',
value: 'true',
description: 'SSE4.1 support - depends on SSE2'
)
option('enable-avx2',
type: 'boolean',
value: 'true',
description: 'AVX2 support - depends on SSE4.1'
)
option('enable-f16c',
type: 'boolean',
value: 'true',
description: 'Hardware half-float support - depends on SSE'
)
# Optional dependencies
option('with-lcms',
type: 'boolean',
value: 'true',
description: 'build with lcms'
)