-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakePresets.json
38 lines (38 loc) · 1.09 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,
"cmakeMinimumRequired": {
"major": 3,
"minor": 22,
"patch": 0
},
"configurePresets": [
{
"name": "hopr_config_debug_nohdf5_nocgns",
"displayName": "hopr configure: default debug build no cgns no hdf5",
"hidden": false,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"LIBS_BUILD_HDF5": "Off",
"LIBS_USE_CGNS": "Off"
}
},
{
"name": "hopr_config_release_nohdf5_nocgns",
"displayName": "hopr configure: default release build no cgns no hdf5",
"hidden": false,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"LIBS_BUILD_HDF5": "Off",
"LIBS_USE_CGNS": "Off"
}
}
],
"testPresets": [
{
"name": "HOPR_ctest",
"displayName": "Test HOPR running ctest ",
"configurePreset": "HOPR_config_release",
"output": {"outputOnFailure": true}
}
]
}