diff options
author | Manuel VIVES <git@vives.fr> | 2017-08-03 01:03:13 (GMT) |
---|---|---|
committer | Manuel VIVES <git@vives.fr> | 2017-08-03 01:03:13 (GMT) |
commit | b68f1e769c7a846b10c9ba2f604fc4d0532ecc95 (patch) | |
tree | 4d4b24bc5feb953d1ad61244a58151094da987ff | |
parent | d655d0989db0fc66f4004bd9f6d78da4bdc045e9 (diff) | |
download | googletest-b68f1e769c7a846b10c9ba2f604fc4d0532ecc95.zip googletest-b68f1e769c7a846b10c9ba2f604fc4d0532ecc95.tar.gz googletest-b68f1e769c7a846b10c9ba2f604fc4d0532ecc95.tar.bz2 |
Fix policy issue with old cmakesrefs/pull/1170/head
#1169
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7fceb39..f7fb65e 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() |