cmake/Modules/FindZLIB.cmake

109 lines
3.6 KiB
CMake
Raw Normal View History

2014-08-03 19:52:23 +02:00
#.rst:
# FindZLIB
# --------
#
# Find zlib
#
# Find the native ZLIB includes and library. Once done this will define
#
# ::
#
# ZLIB_INCLUDE_DIRS - where to find zlib.h, etc.
# ZLIB_LIBRARIES - List of libraries when using zlib.
# ZLIB_FOUND - True if zlib found.
#
#
#
# ::
#
# ZLIB_VERSION_STRING - The version of zlib found (x.y.z)
# ZLIB_VERSION_MAJOR - The major version of zlib
# ZLIB_VERSION_MINOR - The minor version of zlib
# ZLIB_VERSION_PATCH - The patch version of zlib
# ZLIB_VERSION_TWEAK - The tweak version of zlib
#
2010-06-23 01:18:35 +03:00
#
2010-11-13 01:00:53 +02:00
#
# The following variable are provided for backward compatibility
#
2014-08-03 19:52:23 +02:00
# ::
#
# ZLIB_MAJOR_VERSION - The major version of zlib
# ZLIB_MINOR_VERSION - The minor version of zlib
# ZLIB_PATCH_VERSION - The patch version of zlib
#
#
2012-02-18 12:40:36 +02:00
#
2014-08-03 19:52:23 +02:00
# An includer may set ZLIB_ROOT to a zlib installation root to tell this
# module where to look.
2009-10-04 10:30:41 +03:00
#=============================================================================
2012-02-18 12:40:36 +02:00
# Copyright 2001-2011 Kitware, Inc.
2009-10-04 10:30:41 +03:00
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2010-11-13 01:00:53 +02:00
# (To distribute this file outside of CMake, substitute the full
2009-10-04 10:30:41 +03:00
# License text for the above reference.)
2013-03-16 19:13:01 +02:00
set(_ZLIB_SEARCHES)
2012-02-18 12:40:36 +02:00
# Search ZLIB_ROOT first if it is set.
2013-03-16 19:13:01 +02:00
if(ZLIB_ROOT)
set(_ZLIB_SEARCH_ROOT PATHS ${ZLIB_ROOT} NO_DEFAULT_PATH)
list(APPEND _ZLIB_SEARCHES _ZLIB_SEARCH_ROOT)
endif()
2012-02-18 12:40:36 +02:00
# Normal search.
2013-03-16 19:13:01 +02:00
set(_ZLIB_SEARCH_NORMAL
2012-02-18 12:40:36 +02:00
PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\Zlib;InstallPath]"
"$ENV{PROGRAMFILES}/zlib"
)
2013-03-16 19:13:01 +02:00
list(APPEND _ZLIB_SEARCHES _ZLIB_SEARCH_NORMAL)
2013-03-16 19:13:01 +02:00
set(ZLIB_NAMES z zlib zdll zlib1 zlibd zlibd1)
2012-02-18 12:40:36 +02:00
# Try each search configuration.
2013-03-16 19:13:01 +02:00
foreach(search ${_ZLIB_SEARCHES})
find_path(ZLIB_INCLUDE_DIR NAMES zlib.h ${${search}} PATH_SUFFIXES include)
find_library(ZLIB_LIBRARY NAMES ${ZLIB_NAMES} ${${search}} PATH_SUFFIXES lib)
endforeach()
2012-02-18 12:40:36 +02:00
2013-03-16 19:13:01 +02:00
mark_as_advanced(ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
2009-11-06 22:07:41 +02:00
2013-03-16 19:13:01 +02:00
if(ZLIB_INCLUDE_DIR AND EXISTS "${ZLIB_INCLUDE_DIR}/zlib.h")
file(STRINGS "${ZLIB_INCLUDE_DIR}/zlib.h" ZLIB_H REGEX "^#define ZLIB_VERSION \"[^\"]*\"$")
2010-11-13 01:00:53 +02:00
2013-03-16 19:13:01 +02:00
string(REGEX REPLACE "^.*ZLIB_VERSION \"([0-9]+).*$" "\\1" ZLIB_VERSION_MAJOR "${ZLIB_H}")
string(REGEX REPLACE "^.*ZLIB_VERSION \"[0-9]+\\.([0-9]+).*$" "\\1" ZLIB_VERSION_MINOR "${ZLIB_H}")
string(REGEX REPLACE "^.*ZLIB_VERSION \"[0-9]+\\.[0-9]+\\.([0-9]+).*$" "\\1" ZLIB_VERSION_PATCH "${ZLIB_H}")
set(ZLIB_VERSION_STRING "${ZLIB_VERSION_MAJOR}.${ZLIB_VERSION_MINOR}.${ZLIB_VERSION_PATCH}")
2010-11-13 01:00:53 +02:00
# only append a TWEAK version if it exists:
2013-03-16 19:13:01 +02:00
set(ZLIB_VERSION_TWEAK "")
if( "${ZLIB_H}" MATCHES "^.*ZLIB_VERSION \"[0-9]+\\.[0-9]+\\.[0-9]+\\.([0-9]+).*$")
set(ZLIB_VERSION_TWEAK "${CMAKE_MATCH_1}")
set(ZLIB_VERSION_STRING "${ZLIB_VERSION_STRING}.${ZLIB_VERSION_TWEAK}")
endif()
2010-11-13 01:00:53 +02:00
2013-03-16 19:13:01 +02:00
set(ZLIB_MAJOR_VERSION "${ZLIB_VERSION_MAJOR}")
set(ZLIB_MINOR_VERSION "${ZLIB_VERSION_MINOR}")
set(ZLIB_PATCH_VERSION "${ZLIB_VERSION_PATCH}")
endif()
2013-03-16 19:13:01 +02:00
# handle the QUIETLY and REQUIRED arguments and set ZLIB_FOUND to TRUE if
# all listed variables are TRUE
2013-03-16 19:13:01 +02:00
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
2011-06-19 15:41:06 +03:00
FIND_PACKAGE_HANDLE_STANDARD_ARGS(ZLIB REQUIRED_VARS ZLIB_LIBRARY ZLIB_INCLUDE_DIR
2010-11-13 01:00:53 +02:00
VERSION_VAR ZLIB_VERSION_STRING)
2010-06-23 01:18:35 +03:00
2013-03-16 19:13:01 +02:00
if(ZLIB_FOUND)
set(ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR})
set(ZLIB_LIBRARIES ${ZLIB_LIBRARY})
endif()