commit | 568958e94000946a035a034a6d99c7a90fc8984f | [log] [tgz] |
---|---|---|
author | Joel Laity <joel.laity@gmail.com> | Thu Aug 03 15:50:45 2017 +1200 |
committer | Joel Laity <joel.laity@gmail.com> | Thu Aug 03 15:50:45 2017 +1200 |
tree | 12aeacd4a9a31f268be10c3a17350850fccd9d40 | |
parent | 28bb854cefbaa2ff00e179ac1b864459464e3165 [diff] [blame] |
Fixed cmake policy issue
diff --git a/CMakeLists.txt b/CMakeLists.txt index f7fb65e..3048630 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 )