From ed6dba0bd87748ebe68efae6a2905f03418ba35b Mon Sep 17 00:00:00 2001 From: Sergiu Dotenco Date: Tue, 11 Aug 2015 18:56:28 +0200 Subject: [PATCH] cmake: fixed warning caused by policy CMP0063 --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1978c4..b2fa9e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,6 +4,10 @@ if (POLICY CMP0042) cmake_policy (SET CMP0042 NEW) endif (POLICY CMP0042) +if (POLICY CMP0063) + cmake_policy (SET CMP0063 NEW) +endif (POLICY CMP0063) + project (google-glog) enable_testing () -- 2.34.1