Skip to content

Commit

Permalink
CMake: Add a Fuzzers preset for building fuzzers locally
Browse files Browse the repository at this point in the history
  • Loading branch information
ADKaster committed Nov 5, 2024
1 parent 5760835 commit 3effe05
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,20 +138,26 @@
}
},
{
"name": "Fuzzers_CI",
"inherits": [
"vcpkg_ci",
"default"
],
"name": "Fuzzers",
"inherits": "default",
"displayName": "Fuzzers Config",
"description": "Fuzzers build with GitHub Actions cache",
"description": "Fuzzers build",
"binaryDir": "${fileDir}/Build/fuzzers",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "",
"ENABLE_QT": "OFF",
"ENABLE_FUZZERS_LIBFUZZER": "ON",
"ENABLE_ADDRESS_SANITIZER": "ON"
}
},
{
"name": "Fuzzers_CI",
"inherits": [
"vcpkg_ci",
"Fuzzers"
],
"displayName": "Fuzzers CI Config",
"description": "Fuzzers build with GitHub Actions cache"
}
],
"buildPresets": [
Expand Down

0 comments on commit 3effe05

Please sign in to comment.