-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmeson_options.txt
125 lines (108 loc) · 2.35 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
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
option(
'gtk-doc',
type: 'boolean',
value: false,
description: 'Build gtk-doc HTML',
)
option(
'introspection',
type: 'boolean',
value: true,
description: 'Build gobject-introspection files',
)
option(
'vala',
type: 'feature',
value: 'auto',
description: 'Build Vala language bindings',
)
option(
'visibility',
type: 'boolean',
value: true,
description: 'Build with GNU symbol visibility',
)
option(
'keyboard-library',
type: 'boolean',
value: true,
description: 'Build the keyboard library needed by xfwm4 and xfce4-settings',
)
option(
'x11',
type: 'feature',
value: 'auto',
description: 'Support for the X11 windowing system',
)
option(
'wayland',
type: 'feature',
value: 'auto',
description: 'Support for the Wayland windowing system',
)
option(
'session-management',
type: 'feature',
value: 'auto',
description: 'Session management support (X11 only)',
)
option(
'startup-notification',
type: 'feature',
value: 'auto',
description: 'Startup notification support (X11 only)',
)
option(
'libgtop',
type: 'feature',
value: 'auto',
description: 'Libgtop support for system information',
)
option(
'epoxy',
type: 'feature',
value: 'auto',
description: 'Library for handling OpenGL function pointer management (requires libgtop)',
)
option(
'gudev',
type: 'feature',
value: 'auto',
description: 'GObject bindings for libudev (requires libgtop)',
)
option(
'glade',
type: 'feature',
value: 'auto',
description: 'Generate files for libxfce4ui integration in Glade interface designer',
)
option(
'glade-catalogdir',
type: 'string',
value: '',
description: 'Specify where to install Glade catalog files (default: autodetect, requires glade)',
)
option(
'glade-moduledir',
type: 'string',
value: '',
description: 'Specify where to install Glade modules (default: autodetect, requires glade)',
)
option(
'glade-pixmapdir',
type: 'string',
value: '',
description: 'Specify where to install Glade pixmaps (default: autodetect, requires glade)',
)
option(
'vendor-info',
type: 'string',
value: '',
description: 'Specify an additional vendor name, optionally with a file in $prefix/share/xfce4/vendorinfo',
)
option(
'manual-website',
type: 'string',
value: '',
description: 'Specify an optional manual website (default: https://docs.xfce.org/help.php)',
)