Skip to content

Commit

Permalink
Merge pull request #188 from sssooonnnggg/fix/cmake-preset
Browse files Browse the repository at this point in the history
fix(cmake-preset): add configuration property for build presets
  • Loading branch information
syoyo authored Aug 23, 2024
2 parents 9a39534 + ab1632a commit f93caa5
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 f93caa5

Please sign in to comment.