-
Notifications
You must be signed in to change notification settings - Fork 18
/
meson_options.txt
48 lines (40 loc) · 1.17 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
option('target',
type: 'combo',
choices : ['release', 'autotest', 'unittest', 'buildenv', 'librib'],
value: 'release',
description: 'Set the target build.')
option('arch',
type: 'array',
description: 'Set the target host arch.')
option('yanet_config',
type: 'array',
description: 'Set the suffix for yanet configure file.')
option('version_major',
type: 'integer',
value: '0',
description: 'Set the major version.',
yield: true)
option('version_minor',
type: 'integer',
value: '0',
description: 'Set the minor version.',
yield: true)
option('version_revision',
type: 'string',
value: '00000000',
description: 'Set the revision version.',
yield: true)
option('version_hash',
type: 'string',
value: '00000000',
description: 'Set the hash version.',
yield: true)
option('version_custom',
type: 'string',
value: 'develop',
description: 'Set the custom string version.',
yield: true)
option('enable_acl_debug',
type: 'boolean',
value: false,
description: 'Enable ACL debug flags.')