From fe6f35c8f3ec2102243da352fef58745ae519acd Mon Sep 17 00:00:00 2001 From: Attila Krasznahorkay Date: Mon, 25 Sep 2023 11:33:15 +0200 Subject: [PATCH] Update to GoogleTest 1.14.0. This is mainly to avoid a warning that shows up with modern CMake versions, using older versions of GoogleTest. --- tests/googletest/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/googletest/CMakeLists.txt b/tests/googletest/CMakeLists.txt index 50328608..7171141a 100644 --- a/tests/googletest/CMakeLists.txt +++ b/tests/googletest/CMakeLists.txt @@ -1,6 +1,6 @@ # VecMem project, part of the ACTS project (R&D line) # -# (c) 2021-2022 CERN for the benefit of the ACTS project +# (c) 2021-2023 CERN for the benefit of the ACTS project # # Mozilla Public License Version 2.0 @@ -18,8 +18,8 @@ message( STATUS "Building GoogleTest as part of the VecMem project" ) # Declare where to get GoogleTest from. FetchContent_Declare( GoogleTest - URL "https://github.com/google/googletest/archive/release-1.11.0.tar.gz" - URL_MD5 "e8a8df240b6938bb6384155d4c37d937" ) + URL "https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz" + URL_MD5 "c8340a482851ef6a3fe618a082304cfc" ) # Options used in the build of GoogleTest. set( BUILD_GMOCK FALSE CACHE BOOL "Turn off the build of GMock" )