From 28e415fb3e8641a245ab4485c5b087c46549fc05 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Thu, 9 Dec 2021 21:51:16 +0200 Subject: [PATCH] Update to google benchmark to v1.6.0 --- bench/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bench/CMakeLists.txt b/bench/CMakeLists.txt index 5283f83d..489802d9 100644 --- a/bench/CMakeLists.txt +++ b/bench/CMakeLists.txt @@ -18,8 +18,7 @@ if(NOT benchmark_FOUND) include(FetchContent) set(BENCHMARK_ENABLE_GTEST_TESTS OFF CACHE INTERNAL "") # Do not build and run googlebenchmark tests - FetchContent_Declare(googlebenchmark GIT_REPOSITORY https://github.com/google/benchmark.git GIT_TAG v1.5.2) - + FetchContent_Declare(googlebenchmark GIT_REPOSITORY https://github.com/google/benchmark.git GIT_TAG v1.6.0) FetchContent_MakeAvailable(googlebenchmark) else() message(FATAL_ERROR "GoogleBenchmark is missing. Use CMake >= 3.11 or download it")