-
Notifications
You must be signed in to change notification settings - Fork 10
/
CMakePresets.json
81 lines (81 loc) · 2.43 KB
/
CMakePresets.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version" : 3,
"configurePresets": [
{
"name" : "base",
"displayName" : "Base Configuration",
"warnings": {
"deprecated": true
},
"cacheVariables": {
"CMAKE_BUILD_TYPE" : "RelWithDebInfo",
"ALGEBRA_PLUGINS_BUILD_TESTING" : "TRUE",
"ALGEBRA_PLUGINS_BUILD_BENCHMARKS" : "TRUE",
"ALGEBRA_PLUGINS_FAIL_ON_WARNINGS" : "TRUE",
"ALGEBRA_PLUGINS_USE_SYSTEM_LIBS" : "FALSE"
}
},
{
"name" : "vecmem",
"displayName" : "VecMem Enabled Configuration",
"inherits" : [ "base" ],
"cacheVariables": {
"ALGEBRA_PLUGINS_SETUP_VECMEM" : "TRUE",
"ALGEBRA_PLUGINS_INCLUDE_VECMEM" : "TRUE"
}
},
{
"name" : "eigen",
"displayName" : "Eigen Enabled Configuration",
"inherits" : [ "base" ],
"cacheVariables": {
"ALGEBRA_PLUGINS_SETUP_EIGEN3" : "TRUE",
"ALGEBRA_PLUGINS_INCLUDE_EIGEN" : "TRUE"
}
},
{
"name" : "vc",
"displayName" : "Vc Enabled Configuration",
"inherits" : [ "base" ],
"cacheVariables": {
"ALGEBRA_PLUGINS_SETUP_VC" : "TRUE",
"ALGEBRA_PLUGINS_INCLUDE_VC" : "TRUE"
}
},
{
"name" : "fastor",
"displayName" : "Fastor Enabled Configuration",
"inherits" : [ "base" ],
"cacheVariables": {
"ALGEBRA_PLUGINS_SETUP_FASTOR" : "TRUE",
"ALGEBRA_PLUGINS_INCLUDE_FASTOR" : "TRUE"
}
},
{
"name" : "default-x86-64",
"displayName" : "Default Developer Configuration for x86_64",
"inherits" : [ "vecmem", "eigen", "vc", "fastor" ]
},
{
"name" : "default-aarch64",
"displayName" : "Default Developer Configuration for ARM64",
"inherits" : [ "vecmem", "eigen", "vc" ]
},
{
"name" : "cuda",
"displayName" : "CUDA Developer Configuration",
"inherits" : [ "vecmem", "eigen" ],
"cacheVariables" : {
"ALGEBRA_PLUGINS_TEST_CUDA" : "TRUE"
}
},
{
"name" : "sycl",
"displayName" : "SYCL Developer Configuration",
"inherits" : [ "vecmem", "eigen" ],
"cacheVariables" : {
"ALGEBRA_PLUGINS_TEST_SYCL" : "TRUE"
}
}
]
}