From a63cc6ca5e1faeb5e27857f4976c1dd0ef880deb Mon Sep 17 00:00:00 2001 From: Andrei Avram <6795248+andreiavrammsd@users.noreply.github.com> Date: Sat, 7 Jun 2025 23:19:16 +0300 Subject: [PATCH] Upgrade google test and benchmark --- tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1a70fa2..76be80d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -12,7 +12,7 @@ endif() include(FetchContent) if (NOT googletest_POPULATED) - FetchContent_Declare(googletest URL https://github.com/google/googletest/archive/refs/tags/v1.15.2.zip) + FetchContent_Declare(googletest URL https://github.com/google/googletest/archive/refs/tags/v1.17.0.zip) FetchContent_MakeAvailable(googletest) endif () @@ -50,7 +50,7 @@ endif() # Benchmark if (NOT benchmark_POPULATED) - FetchContent_Declare(benchmark URL https://github.com/google/benchmark/archive/refs/tags/v1.8.5.zip) + FetchContent_Declare(benchmark URL https://github.com/google/benchmark/archive/refs/tags/v1.9.4.zip) FetchContent_MakeAvailable(benchmark) endif ()