forked from ForestClaw/forestclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
106 lines (105 loc) · 1.98 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "ci",
"binaryDir": "${sourceDir}/build",
"generator": "Ninja",
"environment": {
"CUDAARCHS": "72"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "default",
"binaryDir": "${sourceDir}/build",
"generator": "Ninja",
"cacheVariables": {"CMAKE_BUILD_TYPE": "Release",
"mpi": true,
"openmp": true}
},
{
"name": "mac", "inherits": "default",
"displayName": "MacOS",
"description": "MacOS: OpenMP not used",
"cacheVariables": {"openmp": false},
"environment": {
"CC": "gcc-10",
"CXX": "g++-10",
"FC": "gfortran-10"
}
},
{
"name": "makemac", "inherits": ["make", "mac"],
"displayName": "MacOS with Make",
"description": "MacOS: OpenMP not used, using Make"
},
{
"name": "make", "inherits": "default",
"displayName": "build with GNU Make",
"generator": "Unix Makefiles"
},
{
"name": "makewin", "inherits": "default",
"displayName": "build with GNU Make: Windows",
"generator": "MinGW Makefiles"
},
{
"name": "intel", "inherits": "default",
"displayName": "Intel Classic compiler: Linux/MacOS",
"environment": {
"CC": "icc",
"CXX": "icpc",
"FC": "ifort",
"MPI_ROOT": "$env{I_MPI_ROOT}"
}
},
{
"name": "intelwin", "inherits": "intel",
"displayName": "Intel Classic compiler: Windows",
"environment": {
"CC": "icl",
"CXX": "icl"
}
},
{
"name": "intelnext", "inherits": "intel",
"displayName": "Intel oneAPI LLVM",
"environment": {
"CC": "icx",
"CXX": "icx",
"FC": "ifx"
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default"
},
{
"name": "ci",
"configurePreset": "ci"
}
],
"testPresets": [
{
"name": "default",
"configurePreset": "default",
"output": {
"outputOnFailure": true,
"verbosity": "default"
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": false}
}
]
}