31 lines
870 B
JSON
31 lines
870 B
JSON
{
|
|
"version": 3,
|
|
"configurePresets": [
|
|
|
|
{
|
|
"name": "windows-base",
|
|
"description": "Target Windows with the Visual Studio development environment.",
|
|
"hidden": true,
|
|
"generator": "Ninja",
|
|
"binaryDir": "${sourceDir}/build/",
|
|
"installDir": "${sourceDir}/build/install/${presetName}",
|
|
"condition": {
|
|
"type": "equals",
|
|
"lhs": "${hostSystemName}",
|
|
"rhs": "Windows"
|
|
}
|
|
},
|
|
{
|
|
"name": "windows-x64-release",
|
|
"displayName": "Windows x64 Release",
|
|
"description": "Target Windows (64-bit) with the Visual Studio development environment. (RelWithDebInfo)",
|
|
"inherits": "windows-base",
|
|
"architecture": {
|
|
"value": "x64",
|
|
"strategy": "external"
|
|
},
|
|
"cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }
|
|
}
|
|
|
|
]
|
|
} |