mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-31 00:55:17 +01:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"version": 2,
|
|
"cmakeMinimumRequired": {
|
|
"major": 3,
|
|
"minor": 23,
|
|
"patch": 0
|
|
},
|
|
"configurePresets": [
|
|
{
|
|
"name": "default",
|
|
"hidden": true,
|
|
"displayName": "Default Config",
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/.cmake/${presetName}",
|
|
"architecture": {
|
|
"value": "x64",
|
|
"strategy": "external"
|
|
},
|
|
"cacheVariables": {
|
|
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
|
|
"CMAKE_RUNTIME_OUTPUT_DIRECTORY": "${sourceDir}/artifacts/${presetName}"
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug",
|
|
"displayName": "Debug",
|
|
"inherits": "default",
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"displayName": "Release",
|
|
"inherits": "default",
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }
|
|
}
|
|
],
|
|
"buildPresets": [
|
|
{
|
|
"name": "Debug",
|
|
"configurePreset": "Debug"
|
|
},
|
|
{
|
|
"name": "Release",
|
|
"configurePreset": "Release"
|
|
}
|
|
]
|
|
} |