2013-10-15 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# CheckLibraryExists
|
|
|
|
# ------------------
|
|
|
|
#
|
|
|
|
# Check if the function exists.
|
|
|
|
#
|
2005-12-14 21:51:08 +03:00
|
|
|
# CHECK_LIBRARY_EXISTS (LIBRARY FUNCTION LOCATION VARIABLE)
|
2005-12-15 18:41:19 +03:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# LIBRARY - the name of the library you are looking for
|
|
|
|
# FUNCTION - the name of the function
|
|
|
|
# LOCATION - location where the library should be found
|
|
|
|
# VARIABLE - variable to store the result
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# The following variables may be set before calling this macro to modify
|
|
|
|
# the way the check is run:
|
2006-02-10 03:23:18 +03:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
2006-02-10 03:23:18 +03:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
|
|
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
|
|
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
2002-09-25 00:36:56 +04:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2002-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# 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:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-02-17 02:35:43 +04:00
|
|
|
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
macro(CHECK_LIBRARY_EXISTS LIBRARY FUNCTION LOCATION VARIABLE)
|
|
|
|
if("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
|
|
|
set(MACRO_CHECK_LIBRARY_EXISTS_DEFINITION
|
2003-07-11 22:14:03 +04:00
|
|
|
"-DCHECK_FUNCTION_EXISTS=${FUNCTION} ${CMAKE_REQUIRED_FLAGS}")
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Looking for ${FUNCTION} in ${LIBRARY}")
|
|
|
|
set(CHECK_LIBRARY_EXISTS_LIBRARIES ${LIBRARY})
|
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
set(CHECK_LIBRARY_EXISTS_LIBRARIES
|
2013-02-09 13:34:37 +04:00
|
|
|
${CHECK_LIBRARY_EXISTS_LIBRARIES} ${CMAKE_REQUIRED_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
try_compile(${VARIABLE}
|
2003-07-11 22:14:03 +04:00
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${CMAKE_ROOT}/Modules/CheckFunctionExists.c
|
2006-02-10 03:23:18 +03:00
|
|
|
COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
|
2013-02-09 13:34:37 +04:00
|
|
|
LINK_LIBRARIES ${CHECK_LIBRARY_EXISTS_LIBRARIES}
|
2012-01-19 00:55:52 +04:00
|
|
|
CMAKE_FLAGS
|
2003-07-11 22:14:03 +04:00
|
|
|
-DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_LIBRARY_EXISTS_DEFINITION}
|
|
|
|
-DLINK_DIRECTORIES:STRING=${LOCATION}
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2002-09-25 18:08:08 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(${VARIABLE})
|
|
|
|
message(STATUS "Looking for ${FUNCTION} in ${LIBRARY} - found")
|
|
|
|
set(${VARIABLE} 1 CACHE INTERNAL "Have library ${LIBRARY}")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if the function ${FUNCTION} exists in the ${LIBRARY} "
|
|
|
|
"passed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Looking for ${FUNCTION} in ${LIBRARY} - not found")
|
|
|
|
set(${VARIABLE} "" CACHE INTERNAL "Have library ${LIBRARY}")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2002-11-18 18:52:09 +03:00
|
|
|
"Determining if the function ${FUNCTION} exists in the ${LIBRARY} "
|
|
|
|
"failed with the following output:\n"
|
2003-07-17 22:55:45 +04:00
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|