-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmeson_options.txt
More file actions
41 lines (36 loc) · 740 Bytes
/
meson_options.txt
File metadata and controls
41 lines (36 loc) · 740 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
36
37
38
39
40
41
option(
'bugreport_url',
type: 'string',
value: 'https://github.com/lethalbit/libalfheim/issues',
description: 'URL for bug report submissions'
)
option(
'build_bindings',
type: 'boolean',
value: true,
description: 'Build the library with bindings'
)
option(
'build_tests',
type: 'boolean',
value: true,
description: 'Build the library with tests'
)
option(
'build_fuzzers',
type: 'boolean',
value: true,
description: 'Build the library fuzzers for aditional testing'
)
option(
'build_examples',
type: 'boolean',
value: true,
description: 'Build the library with examples'
)
option(
'bindings_python',
type: 'boolean',
value: true,
description: 'Build the python bindings (only if build_bindings is enabled)'
)