2011-01-17 22:02:21 +03:00
|
|
|
# - Check if a C function can be linked
|
|
|
|
# CHECK_FUNCTION_EXISTS(<function> <variable>)
|
|
|
|
#
|
|
|
|
# Check that the <function> is provided by libraries on the system and
|
|
|
|
# store the result in a <variable>. This does not verify that any
|
|
|
|
# system header file declares the function, only that it can be found
|
2012-11-07 20:13:09 +04:00
|
|
|
# at link time (consider using CheckSymbolExists).
|
2002-09-20 21:16:50 +04:00
|
|
|
#
|
2006-02-10 03:23:18 +03:00
|
|
|
# The following variables may be set before calling this macro to
|
|
|
|
# modify the way the check is run:
|
|
|
|
#
|
|
|
|
# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
|
|
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
|
|
# CMAKE_REQUIRED_INCLUDES = list of include directories
|
|
|
|
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
2002-09-20 21:16:50 +04:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
2011-01-17 22:02:21 +03:00
|
|
|
# Copyright 2002-2011 Kitware, Inc.
|
2009-09-28 19:46:51 +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: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_FUNCTION_EXISTS FUNCTION VARIABLE)
|
|
|
|
if("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
|
|
|
set(MACRO_CHECK_FUNCTION_DEFINITIONS
|
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}")
|
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES
|
2013-02-09 13:34:37 +04:00
|
|
|
LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_INCLUDES
|
2006-02-10 03:23:18 +03:00
|
|
|
"-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CHECK_FUNCTION_EXISTS_ADD_INCLUDES)
|
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
|
|
|
${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}
|
2003-07-11 22:14:03 +04:00
|
|
|
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
|
2006-02-10 03:23:18 +03:00
|
|
|
"${CHECK_FUNCTION_EXISTS_ADD_INCLUDES}"
|
2003-07-11 22:14:03 +04:00
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2012-08-13 21:47:32 +04:00
|
|
|
if(${VARIABLE})
|
|
|
|
set(${VARIABLE} 1 CACHE INTERNAL "Have function ${FUNCTION}")
|
|
|
|
message(STATUS "Looking for ${FUNCTION} - found")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if the function ${FUNCTION} exists 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} - not found")
|
|
|
|
set(${VARIABLE} "" CACHE INTERNAL "Have function ${FUNCTION}")
|
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2002-11-18 18:52:09 +03:00
|
|
|
"Determining if the function ${FUNCTION} exists 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()
|