-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmeson.options
40 lines (36 loc) · 1.1 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
# SPDX-License-Identifier: Apache-2.0
# The filenames to be installed and considered while sync operation need
# to be passed as 'data_sync_list' option's value.
# By default only common.json will get installed
option(
'data_sync_list',
type : 'array',
choices : ['common','open-power','ibm'],
value : ['common'],
description : 'The set of files and directories to be synced within BMCs'
)
# The retry attempt which is applicable for all files/directories in case of sync
# failure unless overridden from respective JSON file configuration.
# Default value will be 3.
# A retry attempt value of zero indicates no retries will be performed.
option(
'retry_attempts',
type : 'integer',
min : 0,
value : 3
)
# The retry interval in seconds which is applicable for all files/directories
# during sync retry unless overridden from respective JSON file configuration.
# Default value is 5secs.
option(
'retry_interval',
type : 'integer',
value : 5
)
#The option to enable the test suite
option(
'tests',
type: 'feature',
value : 'enabled',
description: 'Build tests'
)