CheckFunctionExists.cmake 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #.rst:
  2. # CheckFunctionExists
  3. # -------------------
  4. #
  5. # Check if a C function can be linked
  6. #
  7. # CHECK_FUNCTION_EXISTS(<function> <variable>)
  8. #
  9. # Check that the <function> is provided by libraries on the system and
  10. # store the result in a <variable>. This does not verify that any
  11. # system header file declares the function, only that it can be found at
  12. # link time (consider using CheckSymbolExists).
  13. # <variable> will be created as an internal cache variable.
  14. #
  15. # The following variables may be set before calling this macro to modify
  16. # the way the check is run:
  17. #
  18. # ::
  19. #
  20. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  21. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  22. # CMAKE_REQUIRED_INCLUDES = list of include directories
  23. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  24. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  25. #=============================================================================
  26. # Copyright 2002-2011 Kitware, Inc.
  27. #
  28. # Distributed under the OSI-approved BSD License (the "License");
  29. # see accompanying file Copyright.txt for details.
  30. #
  31. # This software is distributed WITHOUT ANY WARRANTY; without even the
  32. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  33. # See the License for more information.
  34. #=============================================================================
  35. # (To distribute this file outside of CMake, substitute the full
  36. # License text for the above reference.)
  37. macro(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE)
  38. if(NOT DEFINED "${VARIABLE}" OR "x${${VARIABLE}}" STREQUAL "x${VARIABLE}")
  39. set(MACRO_CHECK_FUNCTION_DEFINITIONS
  40. "-DCHECK_FUNCTION_EXISTS=${FUNCTION} ${CMAKE_REQUIRED_FLAGS}")
  41. if(NOT CMAKE_REQUIRED_QUIET)
  42. message(STATUS "Looking for ${FUNCTION}")
  43. endif()
  44. if(CMAKE_REQUIRED_LIBRARIES)
  45. set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES
  46. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  47. else()
  48. set(CHECK_FUNCTION_EXISTS_ADD_LIBRARIES)
  49. endif()
  50. if(CMAKE_REQUIRED_INCLUDES)
  51. set(CHECK_FUNCTION_EXISTS_ADD_INCLUDES
  52. "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
  53. else()
  54. set(CHECK_FUNCTION_EXISTS_ADD_INCLUDES)
  55. endif()
  56. if(CMAKE_C_COMPILER_LOADED)
  57. set(_cfe_source ${CMAKE_ROOT}/Modules/CheckFunctionExists.c)
  58. elseif(CMAKE_CXX_COMPILER_LOADED)
  59. set(_cfe_source ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CheckFunctionExists/CheckFunctionExists.cxx)
  60. configure_file(${CMAKE_ROOT}/Modules/CheckFunctionExists.c "${_cfe_source}" COPYONLY)
  61. else()
  62. message(FATAL_ERROR "CHECK_FUNCTION_EXISTS needs either C or CXX language enabled")
  63. endif()
  64. try_compile(${VARIABLE}
  65. ${CMAKE_BINARY_DIR}
  66. ${_cfe_source}
  67. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  68. ${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}
  69. CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
  70. "${CHECK_FUNCTION_EXISTS_ADD_INCLUDES}"
  71. OUTPUT_VARIABLE OUTPUT)
  72. unset(_cfe_source)
  73. if(${VARIABLE})
  74. set(${VARIABLE} 1 CACHE INTERNAL "Have function ${FUNCTION}")
  75. if(NOT CMAKE_REQUIRED_QUIET)
  76. message(STATUS "Looking for ${FUNCTION} - found")
  77. endif()
  78. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  79. "Determining if the function ${FUNCTION} exists passed with the following output:\n"
  80. "${OUTPUT}\n\n")
  81. else()
  82. if(NOT CMAKE_REQUIRED_QUIET)
  83. message(STATUS "Looking for ${FUNCTION} - not found")
  84. endif()
  85. set(${VARIABLE} "" CACHE INTERNAL "Have function ${FUNCTION}")
  86. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  87. "Determining if the function ${FUNCTION} exists failed with the following output:\n"
  88. "${OUTPUT}\n\n")
  89. endif()
  90. endif()
  91. endmacro()