-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmeson_options.txt
69 lines (60 loc) · 1.25 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
option(
'desktop-menu',
type: 'feature',
value: 'auto',
description: 'Desktop right-click applications menu',
)
option(
'desktop-icons',
type: 'boolean',
value: true,
description: 'Support for desktop icons',
)
option(
'file-icons',
type: 'boolean',
value: true,
description: 'Support for desktop file icons',
)
option(
'thunarx',
type: 'feature',
value: 'auto',
description: 'Support for Thunar file management extensions',
)
option(
'notifications',
type: 'feature',
value: 'auto',
description: 'Support for mount notifications',
)
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(
'file-manager-fallback',
type: 'string',
value: 'Thunar',
description: 'Fallback file manager to use if the DBus interface is not available',
)
option(
'default-backdrop-filename',
type: 'string',
value: 'backgrounds/xfce/xfce-x.svg',
description: 'The path to the default background image (relative paths will prepend $(datadir)',
)
option(
'tests',
type: 'boolean',
value: true,
description: 'Whether or not to build test programs',
)