-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmeson_options.txt
98 lines (95 loc) · 2.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Build options for Laniakea
#
# Test flags
#
option('linting',
type: 'boolean',
value: true,
description: 'Enable code linters we want to run for static analysis.'
)
option('mypy-install-types',
type: 'boolean',
value: true,
description: 'Make MyPy automatically install missing type stubs.'
)
#
# Build config flags
#
option('download-npm',
type: 'boolean',
value: true,
description: 'Download web dependencies with NPM when configuring the build'
)
option('virtualenv',
type: 'string',
value: '',
description: 'Path to a Python virtualenv to use for services'
)
#
# Feature flags
#
option('docs',
type: 'boolean',
value: false,
description: 'Enable target to build HTML documentation'
)
option('cli-admin',
type: 'boolean',
value: true,
description: 'Build CLI administration tools'
)
option('lighthouse',
type: 'boolean',
value: true,
description: 'Build Lighthouse message relay and queue service'
)
option('scheduler',
type: 'boolean',
value: true,
description: 'Build archive management and maintenance task scheduler daemon'
)
option('mailgun',
type: 'boolean',
value: false,
description: 'E-mail message emitter'
)
option('debcheck',
type: 'boolean',
value: true,
description: 'Build dose/debcheck integration helper binary'
)
option('rubicon',
type: 'boolean',
value: true,
description: 'Build rubicon upload accepting tool'
)
option('webupload',
type: 'boolean',
value: true,
description: 'Web upload service'
)
option('webgui',
type: 'boolean',
value: true,
description: 'Build the web interfaces'
)
option('spears',
type: 'boolean',
value: true,
description: 'Build the "Spears" Britney2 package migration integration'
)
option('synchrotron',
type: 'boolean',
value: true,
description: 'Build the package synchronization module'
)
option('planter',
type: 'boolean',
value: true,
description: 'Build the "Planter" metapackage seed / Germinator integration'
)
option('mirk',
type: 'boolean',
value: false,
description: 'Enable the "mIrk" Matrix messaging bot'
)