-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.options
61 lines (61 loc) · 1.35 KB
/
meson.options
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
option('buildtest', type: 'boolean', value: true, description: 'Build tests')
option(
'max-reports',
type: 'integer',
min: 0,
value: 10,
description: 'Max number of Reports',
)
option(
'max-reading-parameters',
type: 'integer',
min: 0,
value: 200,
description: 'Max number of metric properties in single report',
)
option(
'min-interval',
type: 'integer',
min: 1,
value: 1000,
description: 'Minimal value of interval in milliseconds',
)
option(
'max-triggers',
type: 'integer',
min: 0,
value: 10,
description: 'Max number of Triggers',
)
option(
'max-dbus-path-length',
type: 'integer',
min: 256,
value: 4095,
description: 'Max length of dbus object path',
)
option(
'max-append-limit',
type: 'integer',
min: 0,
value: 256,
description: 'Max AppendLimit value',
)
option(
'max-id-name-length',
type: 'integer',
min: 32,
value: 256,
description: 'Max length of any "id" or "name" type field.',
)
option(
'max-prefix-length',
type: 'integer',
min: 32,
value: 256,
description: 'Max length of dbus prefix for any object.',
)
option('service-wants', type: 'array', value: [])
option('service-requires', type: 'array', value: [])
option('service-before', type: 'array', value: [])
option('service-after', type: 'array', value: [])