From fda8e7b4c33a028b9e2bc176821ee8e6305bb02f Mon Sep 17 00:00:00 2001 From: dodohand Date: Tue, 22 Oct 2024 09:47:31 -0400 Subject: [PATCH] Update CMakeLists.txt select new behavior for CMP0135 when supported by cmake so that: "CMake 3.24 and above prefers to set the timestamps of all extracted contents to the time of the extraction. This ensures that anything that depends on the extracted contents will be rebuilt whenever the URL changes." --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 512e5c3d..7743ac33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,10 @@ cmake_minimum_required(VERSION 3.13) +if(cmake_VERSION VERSION_GREATER_EQUAL "3.24") + cmake_policy(SET CMP0135 NEW) +endif() + project(googletest-distribution) set(GOOGLETEST_VERSION 1.15.2)