mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
These extra configurations are not really used by anyone and cause issues for new comers as it defaults to launching msys2 build, which immediately fails
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
{
|
|
"environments": [
|
|
{
|
|
"BuildDir": "${workspaceRoot}\\build",
|
|
"InstallDir": "${workspaceRoot}\\build\\install"
|
|
},
|
|
{
|
|
"environment": "vcpkg",
|
|
"VcPkgDir": "D:/vcpkg/"
|
|
}
|
|
],
|
|
"configurations": [
|
|
{
|
|
"name": "x64-Debug",
|
|
"generator": "Ninja",
|
|
"configurationType": "Debug",
|
|
"inheritEnvironments": [ "msvc_x64_x64", "vcpkg" ],
|
|
"buildRoot": "${env.BuildDir}\\${name}",
|
|
"installRoot": "${env.InstallDir}\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "KICAD_BUILD_QA_TESTS",
|
|
"value": "False",
|
|
"type": "BOOL"
|
|
},
|
|
{
|
|
"name": "KICAD_WIN32_DPI_AWARE",
|
|
"value": "ON",
|
|
"type": "BOOL"
|
|
}
|
|
],
|
|
"cmakeToolchain": "${env.VcPkgDir}/scripts/buildsystems/vcpkg.cmake"
|
|
},
|
|
{
|
|
"name": "x64-Release",
|
|
"generator": "Ninja",
|
|
"configurationType": "RelWithDebInfo",
|
|
"inheritEnvironments": [ "msvc_x64_x64", "vcpkg" ],
|
|
"buildRoot": "${env.BuildDir}\\${name}",
|
|
"installRoot": "${env.InstallDir}\\${name}",
|
|
"cmakeCommandArgs": "",
|
|
"buildCommandArgs": "-v",
|
|
"ctestCommandArgs": "",
|
|
"variables": [
|
|
{
|
|
"name": "KICAD_BUILD_QA_TESTS",
|
|
"value": "False",
|
|
"type": "BOOL"
|
|
},
|
|
{
|
|
"name": "KICAD_WIN32_DPI_AWARE",
|
|
"value": "ON",
|
|
"type": "BOOL"
|
|
}
|
|
],
|
|
"cmakeToolchain": "${env.VcPkgDir}/scripts/buildsystems/vcpkg.cmake"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|