From 14aa8f0c117bbf959ad2a905cc772ea6bb26cc4a Mon Sep 17 00:00:00 2001 From: Jakub Zakrzewski Date: Wed, 30 Jul 2014 17:24:47 +0200 Subject: Cmake: Require at least CMake 2.8. CMake 2.6 is already a bit old. Many bugs have been fixed since its release. We use 2.8 in our company and we have no intention of polluting our environment with old software, so 2.6 would not be tested. This shouldn't be a problem since all one need to build CMake from source is C and C++ compiler. --- CMake/FindZLIB.cmake | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 CMake/FindZLIB.cmake (limited to 'CMake/FindZLIB.cmake') diff --git a/CMake/FindZLIB.cmake b/CMake/FindZLIB.cmake deleted file mode 100644 index b2cfe1879..000000000 --- a/CMake/FindZLIB.cmake +++ /dev/null @@ -1,10 +0,0 @@ -# Locate zlib -include("${CMAKE_ROOT}/Modules/FindZLIB.cmake") - -# starting 2.8 it is better to use standard modules -if(CMAKE_MAJOR_VERSION EQUAL "2" AND CMAKE_MINOR_VERSION LESS "8") - find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d ) - if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG) - set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG}) - endif() -endif() -- cgit v1.2.3