forked from swat-model/swatplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
38 lines (38 loc) · 1.29 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
{
"version": 3,
"configurePresets": [
{
"name": "ifort_debug",
"displayName": "ifort debug version",
"description": "Preset to builds ifort debug executable for swatplus",
"binaryDir": "build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "build/debug",
"CMAKE_Fortran_COMPILER": "ifort"
}
},
{
"name": "ifx_debug",
"displayName": "ifx debug version",
"description": "Preset to builds a ifx debug executable for swatplus",
"binaryDir": "build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "build/debug",
"CMAKE_Fortran_COMPILER": "ifx"
}
},
{
"name": "gfortran_debug",
"displayName": "gfortran debug version",
"description": "Builds a gfortran debug executable for swatplus",
"binaryDir": "build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "build/debug",
"CMAKE_Fortran_COMPILER": "gfortran"
}
}
]
}