From fb1227486b860c673c5cfdc49359707e30c6b5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Tue, 7 Apr 2026 16:26:55 +0200 Subject: [PATCH] [bench] Update Google benchmark to version 1.8.4 (#3579) Fix CMake warning from more recent versions. Latest benchmark release support C++11. Does not increase CMake requirements. --- bench/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/CMakeLists.txt b/bench/CMakeLists.txt index 3806b24b..fbc99e96 100644 --- a/bench/CMakeLists.txt +++ b/bench/CMakeLists.txt @@ -19,7 +19,7 @@ if(NOT benchmark_FOUND) # disable tests set(BENCHMARK_ENABLE_TESTING OFF CACHE INTERNAL "") # Do not build and run googlebenchmark tests - FetchContent_Declare(googlebenchmark GIT_REPOSITORY https://github.com/google/benchmark.git GIT_TAG v1.6.0) + FetchContent_Declare(googlebenchmark GIT_REPOSITORY https://github.com/google/benchmark.git GIT_TAG v1.8.4) FetchContent_MakeAvailable(googlebenchmark) endif()