-
Notifications
You must be signed in to change notification settings - Fork 7
/
meson_options.txt
69 lines (60 loc) · 1.39 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(
'helper-path-prefix',
type: 'string',
value: '',
description: 'Path prefix under which helper executables will be installed (default: $libdir)',
)
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(
'sound',
type: 'feature',
value: 'auto',
description: 'Support for notification sounds',
)
option(
'dbus-start-daemon',
type: 'boolean',
value: true,
description: 'Whether or not to install the D-Bus service activation files',
)
option(
'dbus-service-dir',
type: 'string',
value: '',
description: 'Specifies the directory where D-Bus service activation files should be installed (default=${datadir}/dbus-1/services)',
)
option(
'systemd',
type: 'feature',
value: 'auto',
description: 'Whether or not to install systemd user service files',
)
option(
'systemd-user-service-dir',
type: 'string',
value: '',
description: 'Specifies the directory where systemd user services should be installed (default=${prefix}/lib/systemd/user)',
)
option(
'xdg-autostart',
type: 'boolean',
value: true,
description: 'Whether or not to install the XDG autostart file',
)
option(
'tests',
type: 'boolean',
value: false,
description: 'Whether or not to build test programs',
)