CMake: Add a Fuzzers preset for building fuzzers locally

This commit is contained in:
Andrew Kaster 2024-11-05 13:59:09 -07:00 committed by Andrew Kaster
parent a283a4fce5
commit 80d9949264
Notes: github-actions[bot] 2024-11-06 17:39:48 +00:00

View file

@ -138,13 +138,10 @@
} }
}, },
{ {
"name": "Fuzzers_CI", "name": "Fuzzers",
"inherits": [ "inherits": "default",
"vcpkg_ci",
"default"
],
"displayName": "Fuzzers Config", "displayName": "Fuzzers Config",
"description": "Fuzzers build with GitHub Actions cache", "description": "Fuzzers build",
"binaryDir": "${fileDir}/Build/fuzzers", "binaryDir": "${fileDir}/Build/fuzzers",
"cacheVariables": { "cacheVariables": {
"CMAKE_BUILD_TYPE": "", "CMAKE_BUILD_TYPE": "",
@ -152,6 +149,15 @@
"ENABLE_FUZZERS_LIBFUZZER": "ON", "ENABLE_FUZZERS_LIBFUZZER": "ON",
"ENABLE_ADDRESS_SANITIZER": "ON" "ENABLE_ADDRESS_SANITIZER": "ON"
} }
},
{
"name": "Fuzzers_CI",
"inherits": [
"vcpkg_ci",
"Fuzzers"
],
"displayName": "Fuzzers CI Config",
"description": "Fuzzers build with GitHub Actions cache"
} }
], ],
"buildPresets": [ "buildPresets": [