-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
meson.options
108 lines (108 loc) · 2.11 KB
/
meson.options
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
option(
'bidi',
type: 'feature',
value: 'auto',
description: 'Enable fribidi support',
)
option(
'cairo',
type: 'feature',
value: 'auto',
description: 'Use Cairo as a librsvg backend',
)
option(
'cairo-svg',
type: 'feature',
value: 'auto',
description: 'Use CairoSVG as a librsvg backend',
)
option(
'freetype',
type: 'feature',
value: 'auto',
description: 'Enable freetype support',
)
option(
'golang',
type: 'feature',
value: 'auto',
description: 'Build Golang modules',
)
option(
'docdir',
type: 'string',
description: 'Directory to install documentation',
)
option(
'htmldoc',
type: 'boolean',
value: false,
description: 'Enable generation of HTML man pages',
)
option(
'iconv',
type: 'feature',
value: 'auto',
description: 'Enable iconv support',
)
option(
'libsvg-cairo',
type: 'feature',
value: 'auto',
description: 'Use librsvg as a librsvg backend',
)
option(
'mandoc',
type: 'boolean',
value: false,
description: 'Enable generation of man pages',
)
option('nls', type: 'feature', value: 'auto', description: 'Enable NLS')
option('png', type: 'feature', value: 'auto', description: 'Enable png support')
option(
'python',
type: 'string',
description: 'Select python implementation',
)
option(
'readline',
type: 'feature',
value: 'auto',
description: 'Enable readline support for FvwmConsole (disabled if using Go)',
)
option(
'sm',
type: 'feature',
value: 'auto',
description: 'Enable session management support',
)
option(
'svg',
type: 'feature',
value: 'auto',
description: 'Enable svg support',
)
option(
'xcursor',
type: 'feature',
value: 'auto',
description: 'Enable Xcursor support',
)
option(
'xfixes',
type: 'feature',
value: 'auto',
description: 'Enable XFixes support',
)
option(
'xrender',
type: 'feature',
value: 'auto',
description: 'Enable XRender support',
)
option(
'xpm',
type: 'feature',
value: 'auto',
description: 'Enable X PixMap (xpm) support',
)