Skip to content

Commit

Permalink
fix(cmake-preset): add configuration property for build presets
Browse files Browse the repository at this point in the history
  • Loading branch information
sssooonnnggg committed Aug 23, 2024
1 parent 9a39534 commit ab1632a
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,49 +138,57 @@
"name": "msvc_2022_debug",
"displayName": "Debug",
"configurePreset": "msvc_2022_debug",
"jobs": 8
"jobs": 8,
"configuration": "Debug"
},
{
"name": "msvc_2022_release",
"displayName": "Release",
"configurePreset": "msvc_2022_release",
"jobs": 8
"jobs": 8,
"configuration": "Release"
},
{
"name": "msvc_2022_relwithdebinfo",
"displayName": "RelWithDebInfo",
"configurePreset": "msvc_2022_relwithdebinfo",
"jobs": 8
"jobs": 8,
"configuration": "RelWithDebInfo"
},
{
"name": "msvc_2022_minsizerel",
"displayName": "MinSizeRel",
"configurePreset": "msvc_2022_minsizerel",
"jobs": 8
"jobs": 8,
"configuration": "MinSizeRel"
},
{
"name": "msvc_2019_debug",
"displayName": "Debug",
"configurePreset": "msvc_2019_debug",
"jobs": 8
"jobs": 8,
"configuration": "Debug"
},
{
"name": "msvc_2019_release",
"displayName": "Release",
"configurePreset": "msvc_2019_release",
"jobs": 8
"jobs": 8,
"configuration": "Release"
},
{
"name": "msvc_2019_relwithdebinfo",
"displayName": "RelWithDebInfo",
"configurePreset": "msvc_2019_relwithdebinfo",
"jobs": 8
"jobs": 8,
"configuration": "RelWithDebInfo"
},
{
"name": "msvc_2019_minsizerel",
"displayName": "MinSizeRel",
"configurePreset": "msvc_2019_minsizerel",
"jobs": 8
"jobs": 8,
"configuration": "MinSizeRel"
}
],
"testPresets": [
Expand Down

0 comments on commit ab1632a

Please sign in to comment.