-
Notifications
You must be signed in to change notification settings - Fork 32
/
meson_options.txt
56 lines (45 loc) · 1.03 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
49
50
51
52
53
54
55
56
#################
# Build options #
#################
option('cereal',
type : 'boolean',
value : false,
description : 'Enable serialization through cereal')
option('avx2',
type : 'boolean',
value : false,
description : 'Build with -mavx2')
option('sse41',
type : 'boolean',
value : false,
description : 'Build with -msse4.1')
option('simde',
type : 'boolean',
value : false,
description : 'Build with SIMDe')
option('simde_nonvec',
type : 'boolean',
value : false,
description : 'Use SIMDe for nonvectorized code')
option('simde_openmp',
type : 'boolean',
value : false,
description : 'Use SIMDe support for OpenMP SIMD')
option('dispatch',
type : 'boolean',
value : false,
description : 'Use SIMDe to generate x86 dispatch')
##############
# Executable #
##############
option('exe',
type : 'boolean',
value : true,
description : 'Build spoa executable')
#########
# Tests #
#########
option('tests',
type : 'boolean',
value : true,
description : 'Enable dependencies required for testing')