2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# FindBZip2
|
|
|
|
# ---------
|
|
|
|
#
|
|
|
|
# Try to find BZip2
|
|
|
|
#
|
2006-09-20 00:11:53 +04:00
|
|
|
# Once done this will define
|
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# BZIP2_FOUND - system has BZip2
|
|
|
|
# BZIP2_INCLUDE_DIR - the BZip2 include directory
|
|
|
|
# BZIP2_LIBRARIES - Link these to use BZip2
|
|
|
|
# BZIP2_NEED_PREFIX - this is set if the functions are prefixed with BZ2_
|
|
|
|
# BZIP2_VERSION_STRING - the version of BZip2 found (since CMake 2.8.8)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2009-09-28 19:45:50 +04:00
|
|
|
#=============================================================================
|
2012-01-10 17:12:09 +04:00
|
|
|
# Copyright 2006-2012 Kitware, Inc.
|
2009-09-28 19:45:50 +04:00
|
|
|
# Copyright 2006 Alexander Neundorf <neundorf@kde.org>
|
2012-01-10 17:12:09 +04:00
|
|
|
# Copyright 2012 Rolf Eike Beer <eike@sf-mail.de>
|
2006-09-20 00:11:53 +04:00
|
|
|
#
|
2009-09-28 19:45:50 +04: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-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:45:50 +04:00
|
|
|
# License text for the above reference.)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(_BZIP2_PATHS PATHS
|
2012-06-06 00:01:54 +04:00
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\Bzip2;InstallPath]"
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
find_path(BZIP2_INCLUDE_DIR bzlib.h ${_BZIP2_PATHS} PATH_SUFFIXES include)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (NOT BZIP2_LIBRARIES)
|
|
|
|
find_library(BZIP2_LIBRARY_RELEASE NAMES bz2 bzip2 ${_BZIP2_PATHS} PATH_SUFFIXES lib)
|
|
|
|
find_library(BZIP2_LIBRARY_DEBUG NAMES bzip2d ${_BZIP2_PATHS} PATH_SUFFIXES lib)
|
2012-01-10 17:12:09 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
|
2012-01-10 17:12:09 +04:00
|
|
|
SELECT_LIBRARY_CONFIGURATIONS(BZIP2)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (BZIP2_INCLUDE_DIR AND EXISTS "${BZIP2_INCLUDE_DIR}/bzlib.h")
|
|
|
|
file(STRINGS "${BZIP2_INCLUDE_DIR}/bzlib.h" BZLIB_H REGEX "bzip2/libbzip2 version [0-9]+\\.[^ ]+ of [0-9]+ ")
|
|
|
|
string(REGEX REPLACE ".* bzip2/libbzip2 version ([0-9]+\\.[^ ]+) of [0-9]+ .*" "\\1" BZIP2_VERSION_STRING "${BZLIB_H}")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2012-01-10 17:00:52 +04:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
# handle the QUIETLY and REQUIRED arguments and set BZip2_FOUND to TRUE if
|
2007-07-18 21:56:45 +04:00
|
|
|
# all listed variables are TRUE
|
2012-08-13 21:47:32 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
2012-01-10 17:00:52 +04:00
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(BZip2
|
|
|
|
REQUIRED_VARS BZIP2_LIBRARIES BZIP2_INCLUDE_DIR
|
|
|
|
VERSION_VAR BZIP2_VERSION_STRING)
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if (BZIP2_FOUND)
|
2015-07-21 19:10:16 +03:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckSymbolExists.cmake)
|
2014-03-30 06:22:54 +04:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakePushCheckState.cmake)
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_QUIET ${BZip2_FIND_QUIETLY})
|
2015-07-21 19:10:16 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${BZIP2_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${BZIP2_LIBRARIES})
|
|
|
|
CHECK_SYMBOL_EXISTS(BZ2_bzCompressInit "bzlib.h" BZIP2_NEED_PREFIX)
|
2014-03-30 06:22:54 +04:00
|
|
|
cmake_pop_check_state()
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
2006-09-20 00:11:53 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
mark_as_advanced(BZIP2_INCLUDE_DIR)
|