forked from fwupd/fwupd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson_options.txt
More file actions
228 lines (228 loc) · 4.14 KB
/
meson_options.txt
File metadata and controls
228 lines (228 loc) · 4.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
option(
'bash_completion',
type: 'boolean',
value: true,
description: 'enable bash completion',
)
option(
'blkid',
type: 'feature',
description: 'libblkid support',
)
option(
'bluez',
type: 'feature',
description: 'BlueZ support',
)
option(
'build',
type: 'combo',
choices: ['all', 'standalone', 'library'],
value: 'all',
description: 'build type',
)
option(
'cbor',
type: 'feature',
description: 'CBOR support for coSWID and uSWID',
)
option(
'dbus_socket_address',
type: 'string',
value: '',
description: 'D-Bus socket address to use for p2p mode',
)
option(
'docs',
type: 'feature',
description: 'Build developer documentation',
)
option(
'efi_binary',
type: 'boolean',
value: false,
description: 'generate uefi binary if missing',
)
option(
'efi_os_dir',
type: 'string',
description: 'the hardcoded name of OS directory in ESP, e.g. fedora',
)
option(
'firmware-packager',
type: 'boolean',
value: true,
description: 'enable firmware-packager installation',
)
option(
'fish_completion',
type: 'boolean',
value: true,
description: 'enable fish completion',
)
option(
'gnutls',
type: 'feature',
description: 'GnuTLS support',
)
option(
'hsi',
type: 'feature',
description: 'Host Security Information',
)
option(
'introspection',
type: 'feature',
description: 'generate GObject Introspection data',
)
option(
'launchd_agent_dir',
type: 'string',
value: '/Library/LaunchAgents',
description: 'Directory to put the launchd agent',
)
option(
'libdrm',
type: 'feature',
description: 'libdrm support',
)
option(
'libmnl',
type: 'feature',
description: 'libmnl support',
)
option(
'logind',
type: 'feature',
description: 'logind-like support',
)
option(
'lvfs',
type: 'combo',
choices: ['true', 'false', 'disabled'],
value: 'true',
description: 'install LVFS remotes',
)
option(
'man',
type: 'boolean',
value: true,
description: 'enable man pages',
)
option(
'metainfo',
type: 'boolean',
value: true,
description: 'install the project metainfo.xml information',
)
option(
'p2p_policy',
type: 'combo',
choices: ['none', 'metadata', 'firmware', 'metadata,firmware'],
value: 'metadata',
description: 'Default P2P sharing policy',
)
option(
'udev_hotplug',
type: 'boolean',
value: true,
description: 'Use the udev netlink hotplug event source',
)
option(
'passim',
type: 'feature',
description: 'Passim support',
)
option(
'plugin_flashrom',
type: 'feature',
description: 'flashrom support',
)
option(
'plugin_modem_manager',
type: 'feature',
description: 'ModemManager support',
)
option(
'plugin_uefi_capsule_splash',
type: 'boolean',
value: true,
description: 'enable UEFI capsule splash support',
)
option(
'polkit',
type: 'feature',
description: 'PolKit support in daemon',
)
option(
'python',
type: 'string',
description: 'the absolute path of the python3 binary',
)
option(
'qubes',
type: 'boolean',
value: false,
description: 'build packages for Qubes OS',
)
option(
'readline',
type: 'feature',
description: 'readline support',
)
option(
'static_analysis',
type: 'boolean',
value: false,
description: 'enable GCC static analysis support',
)
option(
'supported_build',
type: 'feature',
description: 'distribution package with upstream support',
)
option(
'systemd',
type: 'feature',
description: 'systemd support',
)
option(
'systemd_root_prefix',
type: 'string',
value: '',
description: 'Directory to base systemd’s installation directories on',
)
option(
'systemd_unit_user',
type: 'string',
value: 'fwupd-refresh',
description: 'User account to use for fwupd-refresh.service (empty for DynamicUser)',
)
option(
'tests',
type: 'boolean',
value: true,
description: 'enable tests',
)
option(
'umockdev_tests',
type: 'feature',
description: 'umockdev tests',
)
option(
'valgrind',
type: 'feature',
description: 'valgrind support',
)
option(
'vendor_ids_dir',
type: 'string',
value: '',
description: 'Directory for usb.ids, pci.ids etc.',
)
option(
'vendor_metadata',
type: 'boolean',
value: false,
description: 'install OS vendor provided metadata',
)