Commit 51c0f04a authored by f3nix's avatar f3nix

Update FindZLIB.cmake to version 2.6.1 + add MSYS path.

parent 422ffdab
#
# From CMake 2.6.1 + some path changes
#
# - Find zlib # - Find zlib
# Find the native ZLIB includes and library # Find the native ZLIB includes and library
# #
...@@ -16,38 +20,20 @@ IF (ZLIB_INCLUDE_DIR) ...@@ -16,38 +20,20 @@ IF (ZLIB_INCLUDE_DIR)
SET(ZLIB_FIND_QUIETLY TRUE) SET(ZLIB_FIND_QUIETLY TRUE)
ENDIF (ZLIB_INCLUDE_DIR) ENDIF (ZLIB_INCLUDE_DIR)
FIND_PATH(ZLIB_INCLUDE_DIR zlib.h FIND_PATH(ZLIB_INCLUDE_DIR zlib.h PATHS ${ZLIB_DIR_SEARCH}/local/include)
/usr/local/include
/usr/include
${ZLIB_DIR_SEARCH}/local/include
)
SET(ZLIB_NAMES z zlib zdll) SET(ZLIB_NAMES z zlib zdll)
FIND_LIBRARY(ZLIB_LIBRARY FIND_LIBRARY(ZLIB_LIBRARY NAMES ${ZLIB_NAMES} PATHS ${ZLIB_DIR_SEARCH}/local/lib)
NAMES ${ZLIB_NAMES}
PATHS /usr/lib /usr/local/lib ${ZLIB_DIR_SEARCH}/local/lib # handle the QUIETLY and REQUIRED arguments and set ZLIB_FOUND to TRUE if
) # all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
IF (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) FIND_PACKAGE_HANDLE_STANDARD_ARGS(ZLIB DEFAULT_MSG ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
SET(ZLIB_FOUND TRUE)
SET( ZLIB_LIBRARIES ${ZLIB_LIBRARY} ) IF(ZLIB_FOUND)
ELSE (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) SET( ZLIB_LIBRARIES ${ZLIB_LIBRARY} )
SET(ZLIB_FOUND FALSE) ELSE(ZLIB_FOUND)
SET( ZLIB_LIBRARIES ) SET( ZLIB_LIBRARIES )
ENDIF (ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY) ENDIF(ZLIB_FOUND)
IF (ZLIB_FOUND) MARK_AS_ADVANCED( ZLIB_LIBRARY ZLIB_INCLUDE_DIR )
IF (NOT ZLIB_FIND_QUIETLY)
MESSAGE(STATUS "Found ZLIB: ${ZLIB_LIBRARY}")
ENDIF (NOT ZLIB_FIND_QUIETLY)
ELSE (ZLIB_FOUND)
IF (ZLIB_FIND_REQUIRED)
MESSAGE(STATUS "Looked for Z libraries named ${ZLIBS_NAMES}.")
MESSAGE(FATAL_ERROR "Could NOT find z library")
ENDIF (ZLIB_FIND_REQUIRED)
ENDIF (ZLIB_FOUND)
MARK_AS_ADVANCED(
ZLIB_LIBRARY
ZLIB_INCLUDE_DIR
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment