-
Notifications
You must be signed in to change notification settings - Fork 4
/
meson.options
48 lines (42 loc) · 987 Bytes
/
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
option(
'build_examples',
type: 'boolean',
value: true,
description: 'Build example demos, installs SDL2. On by default.'
)
option(
'build_benchmarks',
type: 'boolean',
value: true,
description: 'Build benchmarks. Off by default.'
)
option(
'build_tests',
type: 'boolean',
value: true,
description: 'Build unit tests. On by default.'
)
option(
'enable_profiler',
type: 'boolean',
value: true,
description: 'Enable built-in profiler. (Defines NV_ENABLE_PROFILER, on by default)'
)
option(
'enable_simd',
type: 'boolean',
value: true,
description: 'Enable usage of any SIMD extension. (Defines NV_ENABLE_SIMD, on by default)'
)
option(
'use_doubles',
type: 'boolean',
value: false,
description: 'Use double-precision mode. (Defines NV_USE_DOUBLE_PRECISION, off by default)'
)
option(
'use_tracy',
type: 'boolean',
value: false,
description: 'Build with Tracy profiler.'
)