-
Notifications
You must be signed in to change notification settings - Fork 20
/
meson_options.txt
42 lines (42 loc) · 1003 Bytes
/
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
option(
'dbus_interfacedir',
type: 'string',
value: '',
description: 'Directory for D-Bus interface definitions',
)
option(
'dbus_rulesdir',
type: 'string',
value: '',
description: 'Directory for D-Bus system bus policy rules',
)
option(
'dbus_systemservicedir',
type: 'string',
value: '',
description: 'Directory for D-Bus system services',
)
option(
'libsystemd',
type: 'feature',
value: 'auto',
description: 'Use the libsystemd sd-daemon API to communicate with systemd'
)
option(
'polkit_actiondir',
type: 'string',
value: '',
description: 'Directory for Polkit actions',
)
option(
'systemd_systemunitdir',
type: 'string',
value: '',
description: 'Directory for systemd system units',
)
option(
'installed_tests',
type: 'boolean',
value: true,
description: 'Install tests'
)