Update CMake presets to version 9 and enhance build configurations for Windows

This commit is contained in:
Ethan Chien 2025-03-23 03:51:38 +08:00
parent 36366e254d
commit 52514e1bfe

View File

@ -1,5 +1,5 @@
{
"version": 3,
"version": 9,
"configurePresets": [
{
"name": "base",
@ -52,5 +52,32 @@
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
}
],
"buildPresets": [
{
"name": "kicad",
"configurePreset": "x64-debug",
"configuration": "Debug",
"targets": [
"install"
]
}
],
"workflowPresets": [
{
"name": "kicad",
"description": "kicad",
"displayName": "kicad",
"steps": [
{
"type": "configure",
"name": "x64-debug"
},
{
"type": "build",
"name": "kicad"
}
]
}
]
}