From aa34ebe7be4b4040faf626d35d2560598c3cdabc Mon Sep 17 00:00:00 2001 From: ChillerDragon Date: Tue, 9 Apr 2024 16:51:15 +0800 Subject: [PATCH] Update gtest to current main branch From their readme > GoogleTest now follows the Abseil Live at Head philosophy. We > recommend updating to the latest commit in the main branch as often as > possible. We do publish occasional semantic versions, tagged with > v${major}.${minor}.${patch} (e.g. v1.14.0). https://github.com/google/googletest/blob/3d73dee972d0db344bda9b659836612aba6a3564/README.md#live-at-head --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4c58a983b..3352f1bdd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -764,7 +764,7 @@ endif() ######################################################################## if(NOT(GTEST_FOUND) AND DOWNLOAD_GTEST) - set(DDNET_GTEST_VERSION v1.13.0) + set(DDNET_GTEST_VERSION 3d73dee972d0db344bda9b659836612aba6a3564) configure_file(cmake/Download_GTest_CMakeLists.txt.in googletest-download/CMakeLists.txt) execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" . RESULT_VARIABLE result