-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathmeson_options.txt
More file actions
78 lines (78 loc) · 1.73 KB
/
meson_options.txt
File metadata and controls
78 lines (78 loc) · 1.73 KB
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
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'
)
option(
'generate_tz_coords',
type: 'boolean',
value: false,
description: 'Generate TZCoords header from tzdata'
)
option(
'zone_tab',
type: 'string',
value: '/usr/share/zoneinfo/zone.tab',
description: 'Path to tzdata zone.tab or zone1970.tab'
)
option(
'gtk_layer_shell',
type: 'boolean',
value: false,
description: 'Use gtk-layer-shell for native Wayland background windows'
)