Skip to content

Commit

Permalink
ci: Disable spdlog when running with valgrind
Browse files Browse the repository at this point in the history
There's a "conditional jump / uninitialized variable" warning
which we don't control.
  • Loading branch information
iamsergio committed Mar 4, 2024
1 parent f5807fb commit 2f31306
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
"dev"
],
"cacheVariables": {
"KDDockWidgets_USE_VALGRIND": "ON"
"KDDockWidgets_USE_VALGRIND": "ON",
"KDDockWidgets_NO_SPDLOG": "ON"
}
},
{
Expand All @@ -86,7 +87,8 @@
"dev6"
],
"cacheVariables": {
"KDDockWidgets_USE_VALGRIND": "ON"
"KDDockWidgets_USE_VALGRIND": "ON",
"KDDockWidgets_NO_SPDLOG": "ON"
}
},
{
Expand Down

0 comments on commit 2f31306

Please sign in to comment.