aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-08-02 22:08:49 -0400
committerGitHub <noreply@github.com>2017-08-02 22:08:49 -0400
commitfa388e9f94e21b96a315ed4298e75a2dd2fb6136 (patch)
tree4d4b24bc5feb953d1ad61244a58151094da987ff
parentd655d0989db0fc66f4004bd9f6d78da4bdc045e9 (diff)
parentb68f1e769c7a846b10c9ba2f604fc4d0532ecc95 (diff)
downloadgoogletest-fa388e9f94e21b96a315ed4298e75a2dd2fb6136.tar.gz
googletest-fa388e9f94e21b96a315ed4298e75a2dd2fb6136.tar.bz2
googletest-fa388e9f94e21b96a315ed4298e75a2dd2fb6136.zip
Merge pull request #1170 from Manozco/1169_fix_old_cmake_issue
Fix policy issue with old cmakes
-rw-r--r--CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7fceb399..f7fb65e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,9 @@
cmake_minimum_required(VERSION 2.6.4)
-cmake_policy(SET CMP0048 NEW)
+if (policy CMP0048)
+ cmake_policy(SET CMP0048 NEW)
+endif (policy CMP0048)
+
project( googletest-distribution )
enable_testing()