-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcmake-variants.yaml
61 lines (59 loc) · 1.21 KB
/
cmake-variants.yaml
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
57
58
59
60
61
buildType:
default: debug
choices:
debug:
short: Debug
long: Emit debug information
buildType: Debug
release:
short: Release
long: Optimize generated code
buildType: Release
asan:
short: Asan
long: Instrument with Address Sanitizer
buildType: Asan
tsan:
short: Tsan
long: Instrument with Thread Sanitizer
buildType: Tsan
# EnableOpenMP:
# default: "yes"
# short: Enable OpenMP Testing
# choices:
# yes:
# short: OpenMP
# long: Enable OpenMP
# settings:
# USE_OPENMP: yes
# no:
# short: OpenMP
# long: Disable OpenMP
# settings:
# USE_OPENMP: no
EnableOpenMP:
default: yes
choices:
yes:
short: With_OpenMP
long: Enable PFUnit Unit testing
settings:
USE_OPENMP: YES
no:
short: Without_OpenMP
long: Disable PFUnit Unit testing
settings:
USE_OPENMP: NO
EnableTesting:
default: no
choices:
yes:
short: With_PFUnit
long: Enable PFUnit Unit testing
settings:
DENABLE_TESTING: YES
no:
short: Without_PFUnit
long: Disable PFUnit Unit testing
settings:
DENABLE_TESTING: NO