Skip to content

Instantly share code, notes, and snippets.

@ifeelagood
Created February 21, 2025 00:18
Show Gist options
  • Save ifeelagood/d8be6a29a950a8753cfe1ef29a5cc0ea to your computer and use it in GitHub Desktop.
Save ifeelagood/d8be6a29a950a8753cfe1ef29a5cc0ea to your computer and use it in GitHub Desktop.
windows cmakepresets.json with vcpkg in manifest mode
{
"version": 6,
"configurePresets": [
{
"name": "common-base",
"hidden": true,
"binaryDir": "${sourceDir}/build/${presetName}",
"installDir": "${sourceDir}/install/${presetName}"
},
{
"name": "windows-base",
"hidden": true,
"inherits": "common-base",
"generator": "Ninja",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"CMAKE_FIND_DEBUG_MODE": true
},
"environment": {
"VCPKG_FEATURE_FLAGS": "manifests"
}
},
{
"name": "windows-x64-debug",
"inherits": "windows-base",
"displayName": "x64 Debug",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"SANITIZE": false
}
},
{
"name": "windows-x86-debug",
"inherits": "windows-base",
"displayName": "x86 Debug",
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"SANITIZE": false
}
},
{
"name": "windows-x64-release",
"inherits": "windows-base",
"displayName": "x64 Release",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"SANITIZE": false
}
},
{
"name": "windows-x86-release",
"inherits": "windows-base",
"displayName": "x86 Release",
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"SANITIZE": false
}
},
{
"name": "windows-x64-asan",
"inherits": "windows-base",
"displayName": "x64 sanitize=address",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"SANITIZE": "address"
}
},
{
"name": "windows-x86-asan",
"inherits": "windows-base",
"displayName": "x86 sanitize=address",
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"SANITIZE": "address"
}
}
],
"buildPresets": [
{
"name": "common-base",
"hidden": true,
"jobs": 1,
"cleanFirst": false
},
{
"name": "windows-base",
"inherits": "common-base",
"hidden": true
},
{
"name": "windows-x64-debug",
"inherits": "windows-base",
"displayName": "x64 Debug",
"configurePreset": "windows-x64-debug"
},
{
"name": "windows-x86-debug",
"inherits": "windows-base",
"displayName": "x86 Debug",
"configurePreset": "windows-x86-debug"
},
{
"name": "windows-x64-release",
"inherits": "windows-base",
"displayName": "x64 Release",
"configurePreset": "windows-x64-release"
},
{
"name": "windows-x86-release",
"inherits": "windows-base",
"displayName": "x86 Release",
"configurePreset": "windows-x86-release"
},
{
"name": "windows-x64-asan",
"inherits": "windows-base",
"displayName": "x64 sanitize=address",
"configurePreset": "windows-x64-asan"
},
{
"name": "windows-x86-asan",
"inherits": "windows-base",
"displayName": "x86 sanitize=address",
"configurePreset": "windows-x86-asan"
}
],
"testPresets": [
{
"name": "common-base",
"description": "Basic shared test settings",
"hidden": true,
"execution": {
"noTestsAction": "error",
"stopOnFailure": false
},
"output": {
"outputOnFailure": true
}
},
{
"name": "windows-base",
"inherits": "common-base",
"hidden": true
},
{
"name": "windows-x64-debug",
"inherits": "windows-base",
"displayName": "x64 Debug",
"configurePreset": "windows-x64-debug"
},
{
"name": "windows-x86-debug",
"inherits": "windows-base",
"displayName": "x86 Debug",
"configurePreset": "windows-x86-debug"
},
{
"name": "windows-x64-release",
"inherits": "windows-base",
"displayName": "x64 Release",
"configurePreset": "windows-x64-release"
},
{
"name": "windows-x86-release",
"inherits": "windows-base",
"displayName": "x86 Release",
"configurePreset": "windows-x86-release"
},
{
"name": "windows-x64-asan",
"inherits": "windows-base",
"displayName": "x64 sanitize=address",
"configurePreset": "windows-x64-asan"
},
{
"name": "windows-x86-asan",
"inherits": "windows-base",
"displayName": "x86 sanitize=address",
"configurePreset": "windows-x86-asan"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment