30 lines
893 B
JSON
30 lines
893 B
JSON
{
|
|
"version": 3,
|
|
"cmakeMinimumRequired": { "major": 3, "minor": 21, "patch": 0 },
|
|
"configurePresets": [
|
|
{
|
|
"name": "msvc-debug",
|
|
"displayName": "MSVC Debug (vcpkg)",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/debug",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug",
|
|
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
|
|
"VCPKG_TARGET_TRIPLET": "x64-windows",
|
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
|
}
|
|
},
|
|
{
|
|
"name": "msvc-release",
|
|
"displayName": "MSVC Release (vcpkg)",
|
|
"inherits": "msvc-debug",
|
|
"binaryDir": "${sourceDir}/build/release",
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{ "name": "debug", "configurePreset": "msvc-debug" },
|
|
{ "name": "release", "configurePreset": "msvc-release" }
|
|
]
|
|
}
|