From 01c1b4505f6b432fa10a64483fa7c08785f1bed3 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Mon, 20 Jan 2025 09:52:22 -0800 Subject: [PATCH] Upgrade fetching googletest and googlebenchmark to the latest versions --- tests/CMakeLists.txt | 2 +- tests/benchmark/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 990313ea551f7..f8d2f0471bcfd 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -38,7 +38,7 @@ else() FetchContent_Declare( googletest GIT_REPOSITORY https://github.com/google/googletest - GIT_TAG v1.14.0 + GIT_TAG v1.15.2 ) set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) set(gtest_disable_pthreads ON CACHE BOOL "" FORCE) diff --git a/tests/benchmark/CMakeLists.txt b/tests/benchmark/CMakeLists.txt index c6dd93b19c07c..1b4e5fd59db51 100644 --- a/tests/benchmark/CMakeLists.txt +++ b/tests/benchmark/CMakeLists.txt @@ -35,7 +35,7 @@ else() FetchContent_Declare( benchmark GIT_REPOSITORY https://github.com/google/benchmark.git - GIT_TAG v1.8.3 + GIT_TAG v1.9.1 ) set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "" FORCE) FetchContent_MakeAvailable(benchmark)