diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-08-03 00:00:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-03 00:00:15 -0400 |
commit | 50f3bafb1aefcdd0704b045bcbf58b2a81720256 (patch) | |
tree | 12aeacd4a9a31f268be10c3a17350850fccd9d40 | |
parent | 28bb854cefbaa2ff00e179ac1b864459464e3165 (diff) | |
parent | 568958e94000946a035a034a6d99c7a90fc8984f (diff) | |
download | googletest-50f3bafb1aefcdd0704b045bcbf58b2a81720256.tar.gz googletest-50f3bafb1aefcdd0704b045bcbf58b2a81720256.tar.bz2 googletest-50f3bafb1aefcdd0704b045bcbf58b2a81720256.zip |
Merge pull request #1172 from joelypoley/joelypoley-patch-1
Fix cmake policy issue
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f7fb65e1..30486302 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 2.6.4) -if (policy CMP0048) +if (POLICY CMP0048) cmake_policy(SET CMP0048 NEW) -endif (policy CMP0048) +endif (POLICY CMP0048) project( googletest-distribution ) |