-
Notifications
You must be signed in to change notification settings - Fork 59
/
meson_options.txt
60 lines (60 loc) · 1.31 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
option(
'dbus_service_dir',
type: 'string',
value: '',
description: 'Used to specify the dbus service dir'
)
option(
'dbus_system_dir',
type: 'string',
value: '',
description: 'Used to specify the dbus system dir'
)
option(
'use_polkit',
type: 'feature',
value: 'auto',
description: 'Whether to use polkit in the build'
)
option(
'use_logind',
type: 'feature',
value: 'auto',
description: 'Whether to use logind in the build'
)
option(
'use_gudev',
type: 'feature',
value: 'enabled',
description: 'Whether GUdev support should be enabled (not optional on Linux platforms)'
)
option(
'use_cups',
type: 'feature',
value: 'enabled',
description: 'Whether cups (and therefore the print notifications plugin) support should be enabled'
)
option(
'use_smartcard',
type: 'feature',
value: 'enabled',
description: 'Set to false to disable smartcard support'
)
option(
'use_color',
type: 'feature',
value: 'enabled',
description: 'Whether the color plugin should be enabled'
)
option(
'use_wacom',
type: 'feature',
value: 'auto',
description: 'Whether the wacom plugin should be enabled'
)
option(
'enable_debug',
type: 'boolean',
value: false,
description: 'Show additional build warnings'
)