cmake/Modules/FindZLIB.cmake

147 lines
4.7 KiB
CMake
Raw Normal View History

2016-10-30 18:24:19 +01:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
2014-08-03 19:52:23 +02:00
#.rst:
# FindZLIB
# --------
#
2015-04-27 22:25:09 +02:00
# Find the native ZLIB includes and library.
2014-08-03 19:52:23 +02:00
#
2015-04-27 22:25:09 +02:00
# IMPORTED Targets
# ^^^^^^^^^^^^^^^^
#
# This module defines :prop_tgt:`IMPORTED` target ``ZLIB::ZLIB``, if
# ZLIB has been found.
#
# Result Variables
# ^^^^^^^^^^^^^^^^
#
# This module defines the following variables:
2014-08-03 19:52:23 +02:00
#
# ::
#
# 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
#
2015-04-27 22:25:09 +02:00
# Backward Compatibility
# ^^^^^^^^^^^^^^^^^^^^^^
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
#
2015-04-27 22:25:09 +02:00
# Hints
# ^^^^^
2014-08-03 19:52:23 +02:00
#
2015-04-27 22:25:09 +02:00
# A user may set ``ZLIB_ROOT`` to a zlib installation root to tell this
2014-08-03 19:52:23 +02:00
# module where to look.
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)
2015-11-17 17:22:37 +01:00
set(ZLIB_NAMES z zlib zdll zlib1)
set(ZLIB_NAMES_DEBUG 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})
2015-11-17 17:22:37 +01:00
find_path(ZLIB_INCLUDE_DIR NAMES zlib.h ${${search}} PATH_SUFFIXES include)
2013-03-16 19:13:01 +02:00
endforeach()
2012-02-18 12:40:36 +02:00
2015-11-17 17:22:37 +01:00
# Allow ZLIB_LIBRARY to be set manually, as the location of the zlib library
if(NOT ZLIB_LIBRARY)
foreach(search ${_ZLIB_SEARCHES})
2018-08-09 18:06:22 +02:00
find_library(ZLIB_LIBRARY_RELEASE NAMES ${ZLIB_NAMES} NAMES_PER_DIR ${${search}} PATH_SUFFIXES lib)
find_library(ZLIB_LIBRARY_DEBUG NAMES ${ZLIB_NAMES_DEBUG} NAMES_PER_DIR ${${search}} PATH_SUFFIXES lib)
2015-11-17 17:22:37 +01:00
endforeach()
include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
select_library_configurations(ZLIB)
endif()
unset(ZLIB_NAMES)
unset(ZLIB_NAMES_DEBUG)
2016-10-30 18:24:19 +01:00
mark_as_advanced(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 "")
2015-04-27 22:25:09 +02:00
if( "${ZLIB_H}" MATCHES "ZLIB_VERSION \"[0-9]+\\.[0-9]+\\.[0-9]+\\.([0-9]+)")
2013-03-16 19:13:01 +02:00
set(ZLIB_VERSION_TWEAK "${CMAKE_MATCH_1}")
2016-10-30 18:24:19 +01:00
string(APPEND ZLIB_VERSION_STRING ".${ZLIB_VERSION_TWEAK}")
2013-03-16 19:13:01 +02:00
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
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})
2015-11-17 17:22:37 +01:00
if(NOT ZLIB_LIBRARIES)
set(ZLIB_LIBRARIES ${ZLIB_LIBRARY})
endif()
2015-04-27 22:25:09 +02:00
if(NOT TARGET ZLIB::ZLIB)
add_library(ZLIB::ZLIB UNKNOWN IMPORTED)
set_target_properties(ZLIB::ZLIB PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${ZLIB_INCLUDE_DIRS}")
2015-11-17 17:22:37 +01:00
if(ZLIB_LIBRARY_RELEASE)
set_property(TARGET ZLIB::ZLIB APPEND PROPERTY
IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(ZLIB::ZLIB PROPERTIES
IMPORTED_LOCATION_RELEASE "${ZLIB_LIBRARY_RELEASE}")
endif()
if(ZLIB_LIBRARY_DEBUG)
set_property(TARGET ZLIB::ZLIB APPEND PROPERTY
IMPORTED_CONFIGURATIONS DEBUG)
set_target_properties(ZLIB::ZLIB PROPERTIES
IMPORTED_LOCATION_DEBUG "${ZLIB_LIBRARY_DEBUG}")
endif()
if(NOT ZLIB_LIBRARY_RELEASE AND NOT ZLIB_LIBRARY_DEBUG)
set_property(TARGET ZLIB::ZLIB APPEND PROPERTY
IMPORTED_LOCATION "${ZLIB_LIBRARY}")
endif()
2015-04-27 22:25:09 +02:00
endif()
endif()