diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index afe79593..3fae2f96 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,12 @@ +# Note: CMake support is community-based. The maintainers do not use CMake +# internally. + cmake_minimum_required(VERSION 2.8.8) +if (POLICY CMP0048) + cmake_policy(SET CMP0048 NEW) +endif (POLICY CMP0048) + project(googletest-distribution) set(GOOGLETEST_VERSION 1.9.0) @@ -13,10 +20,6 @@ else() endif() endif() -if (POLICY CMP0048) - cmake_policy(SET CMP0048 NEW) -endif (POLICY CMP0048) - enable_testing() include(CMakeDependentOption) |