CheckLibraryExists.cmake 3.6 KB

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