From 91461509de9b4bfacbad7fb927981aaf0b3327eb Mon Sep 17 00:00:00 2001 From: Joris van der Pol <73706994+jjfvanderpol@users.noreply.github.com> Date: Wed, 5 Jan 2022 11:07:50 +0100 Subject: Set CMake Policy CMP0077 to NEW --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d2eb81..4daf35b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,10 @@ if (POLICY CMP0048) cmake_policy(SET CMP0048 NEW) endif (POLICY CMP0048) +if (POLICY CMP0077) + cmake_policy(SET CMP0077 NEW) +endif (POLICY CMP0077) + project(googletest-distribution) set(GOOGLETEST_VERSION 1.11.0) -- cgit v0.12