-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
77 lines (74 loc) · 1.61 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
70
71
72
73
74
75
76
77
# feature options
option(
'service',
type : 'boolean',
value : 'true',
description : 'Enable/Disable background service')
option(
'create',
type : 'boolean',
value : 'true',
description : 'Enable/Disable bundle creation and modification commands')
option(
'network',
type : 'boolean',
value : 'true',
description : 'Enable/Disable network update mode')
option(
'streaming',
type : 'boolean',
value : 'true',
description : 'Enable/Disable streaming update mode')
option(
'json',
type : 'feature',
value : 'enabled',
description : 'Enable/Disable JSON support')
option(
'gpt',
type : 'feature',
value : 'auto',
description : 'Enable/Disable GPT support')
# other options
option(
'streaming_user',
type : 'string',
value : 'nobody',
description : 'unpriviledged user for the streaming subprocess')
# path options
option(
'systemdunitdir',
type : 'string',
value : '',
description : 'Directory for systemd service files')
option(
'dbuspolicydir',
type : 'string',
value : '',
description : 'D-Bus policy directory')
option(
'dbussystemservicedir',
type : 'string',
value : '',
description : 'D-Bus system service directory')
option(
'dbusinterfacesdir',
type : 'string',
value : '',
description : 'D-Bus interfaces directory')
# build options
option(
'htmldocs',
type : 'boolean',
value : 'false',
description : 'Enable/Disable HTML documentation')
option(
'tests',
type : 'boolean',
value : 'true',
description : 'Enable/Disable test suite')
option(
'fuzzing',
type : 'boolean',
value : 'false',
description : 'Enable/Disable fuzz tests')