-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathmeson_options.txt
132 lines (114 loc) · 2.5 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
126
127
128
129
130
131
132
option(
'gtk-doc',
type: 'boolean',
value: false,
description: 'Build gtk-doc HTML',
)
option(
'introspection',
type: 'boolean',
value: true,
description: 'Build gobject-introspection files',
)
option(
'visibility',
type: 'boolean',
value: true,
description: 'Build with GNU symbol visibility',
)
option(
'x11',
type: 'feature',
value: 'auto',
description: 'Support for the X11 windowing system',
)
option(
'session-management',
type: 'feature',
value: 'auto',
description: 'Session management support (X11 only)',
)
option(
'gio-unix',
type: 'feature',
value: 'auto',
description: 'GIO-Unix support',
)
option(
'gudev',
type: 'feature',
value: 'auto',
description: 'GUDev support (required for thunar-volman)',
)
option(
'libnotify',
type: 'feature',
value: 'auto',
description: 'Libnotify support (required for mount notifications)',
)
option(
'polkit',
type: 'feature',
value: 'auto',
description: 'Polkit support',
)
option(
'thunar-apr',
type: 'feature',
value: 'auto',
description: 'Build the thunar-apr plugin, see plugins/thunar-apr/README.md',
)
option(
'thunar-sbr',
type: 'feature',
value: 'auto',
description: 'Build the thunar-sbr plugin, see plugins/thunar-sbr/README.md',
)
option(
'exif',
type: 'feature',
value: 'auto',
description: 'Exif support (optional for thunar-apr and thunar-sbr plugins)',
)
option(
'pcre2',
type: 'feature',
value: 'auto',
description: 'Pcre2 support (optional for the thunar-sbr plugin)',
)
option(
'thunar-tpa',
type: 'feature',
value: 'auto',
description: 'Build the thunar-tpa plugin, see plugins/thunar-tpa/README.md',
)
option(
'thunar-uca',
type: 'feature',
value: 'auto',
description: 'Build the thunar-uca plugin, see plugins/thunar-uca/README.md',
)
option(
'thunar-wallpaper',
type: 'feature',
value: 'auto',
description: 'Build the thunar-wallpaper plugin, see plugins/thunar-wallpaper/README.md',
)
option(
'helper-path-prefix',
type: 'string',
value: '',
description: 'Path prefix under which helper executables will be installed (default: $libdir)',
)
option(
'thunarx-dirs',
type: 'string',
value: '',
description: 'Used to set different default paths (separated by colon) for thunarx plugin lookup (default: $libdir/thunarx-$THUNARX_VERSION_API)',
)
option(
'thunarx-dirs-envvar',
type: 'boolean',
value: false,
description: 'Enables the posibillity to set custom thunarx directories by using the environment variable THUNARX_DIRS',
)