From a5f09d0626e354d9b61ea6e4a7ff5a967914506f Mon Sep 17 00:00:00 2001 From: Xo Wang Date: Mon, 27 Nov 2023 12:01:21 -0800 Subject: [PATCH] CMakeLists.txt: Upgrade GoogleTest to v1.14.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 87e67e4..6109376 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ include(FetchContent) FetchContent_Declare( googletest GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG release-1.11.0 + GIT_TAG v1.14.0 ) FetchContent_MakeAvailable(googletest)