aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoris van der Pol <73706994+jjfvanderpol@users.noreply.github.com>2022-01-05 11:07:50 +0100
committerGitHub <noreply@github.com>2022-01-05 11:07:50 +0100
commit91461509de9b4bfacbad7fb927981aaf0b3327eb (patch)
tree633d86bd80fe3085b10697807d721e7580cdd456 /CMakeLists.txt
parent6b74da4757a549563d7c37c8fae3e704662a043b (diff)
downloadgoogletest-91461509de9b4bfacbad7fb927981aaf0b3327eb.zip
googletest-91461509de9b4bfacbad7fb927981aaf0b3327eb.tar.gz
googletest-91461509de9b4bfacbad7fb927981aaf0b3327eb.tar.bz2
Set CMake Policy CMP0077 to NEW
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
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)