Skip to content

Commit

Permalink
chore: add CMAKE_CONFIGURATION_TYPES to CMakePresets
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirdEyeSqueegee committed Oct 25, 2023
1 parent 9c45bcb commit 896d897
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CommonLibSF/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,34 @@
"name": "buildtype-debug-msvc",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CONFIGURATION_TYPES": "Debug"
}
},
{
"name": "buildtype-release-msvc",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_CXX_FLAGS_RELEASE": "/fp:fast /GR- /Gw /O2 /Ob3 /Qpar"
"CMAKE_CXX_FLAGS_RELEASE": "/fp:fast /GR- /Gw /O2 /Ob3 /Qpar",
"CMAKE_CONFIGURATION_TYPES": "Release"
}
},
{
"name": "buildtype-debug-clang-cl",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CONFIGURATION_TYPES": "Debug"
}
},
{
"name": "buildtype-release-clang-cl",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_CXX_FLAGS_RELEASE": "/fp:fast /GR- /Gw /O2"
"CMAKE_CXX_FLAGS_RELEASE": "/fp:fast /GR- /Gw /O2",
"CMAKE_CONFIGURATION_TYPES": "Release"
}
},
{
Expand Down

0 comments on commit 896d897

Please sign in to comment.