-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmeson.options
More file actions
35 lines (30 loc) · 861 Bytes
/
meson.options
File metadata and controls
35 lines (30 loc) · 861 Bytes
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
option('ensemble',
type: 'boolean',
value: false,
description: 'Provide the json command using a proper ensemble, otherwise handle the subcommand dispatch internally'
)
option('dedup',
type: 'boolean',
value: true,
description: 'Parsing JSON involves allocating a lot of small string Tcl_Objs, many of which are duplicates. This mechanism helps reduce that duplication'
)
option('debugmode',
type: 'boolean',
value: false,
description: 'Enable debug mode (not symbols, but portions of the code that are only used in debug builds)'
)
option('testmode',
type: 'boolean',
value: false,
description: 'Build with whitebox testing hooks exposed'
)
option('benchmark',
type: 'boolean',
value: false,
description: 'Enable benchmarks'
)
option('unload',
type: 'boolean',
value: true,
description: 'Add support for unloading this shared library'
)