From 949703b66d2faab12b2d0defd7d99a88bff25896 Mon Sep 17 00:00:00 2001 From: Felix Weiglhofer Date: Tue, 29 Oct 2024 14:13:39 +0100 Subject: [PATCH] cmake: Update gtest version. --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b2cfa88..5a652bc 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,7 +3,7 @@ include(FetchContent) FetchContent_Declare( googletest GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG 4ec4cd23f486bf70efcc5d2caa40f24368f752e3 + GIT_TAG v1.15.2 ) FetchContent_GetProperties(googletest) if(NOT googletest_POPULATED)