CheckIncludeFiles.cmake 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #.rst:
  2. # CheckIncludeFiles
  3. # -----------------
  4. #
  5. # Provides a macro to check if a list of one or more header files can
  6. # be included together in ``C``.
  7. #
  8. # .. command:: CHECK_INCLUDE_FILES
  9. #
  10. # ::
  11. #
  12. # CHECK_INCLUDE_FILES("<includes>" <variable>)
  13. #
  14. # Check if the given ``<includes>`` list may be included together
  15. # in a ``C`` source file and store the result in an internal cache
  16. # entry named ``<variable>``. Specify the ``<includes>`` argument
  17. # as a :ref:`;-list <CMake Language Lists>` of header file names.
  18. #
  19. # The following variables may be set before calling this macro to modify
  20. # the way the check is run:
  21. #
  22. # ``CMAKE_REQUIRED_FLAGS``
  23. # string of compile command line flags
  24. # ``CMAKE_REQUIRED_DEFINITIONS``
  25. # list of macros to define (-DFOO=bar)
  26. # ``CMAKE_REQUIRED_INCLUDES``
  27. # list of include directories
  28. # ``CMAKE_REQUIRED_QUIET``
  29. # execute quietly without messages
  30. #
  31. # See modules :module:`CheckIncludeFile` and :module:`CheckIncludeFileCXX`
  32. # to check for a single header file in ``C`` or ``CXX`` languages.
  33. #=============================================================================
  34. # Copyright 2003-2012 Kitware, Inc.
  35. #
  36. # Distributed under the OSI-approved BSD License (the "License");
  37. # see accompanying file Copyright.txt for details.
  38. #
  39. # This software is distributed WITHOUT ANY WARRANTY; without even the
  40. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  41. # See the License for more information.
  42. #=============================================================================
  43. # (To distribute this file outside of CMake, substitute the full
  44. # License text for the above reference.)
  45. macro(CHECK_INCLUDE_FILES INCLUDE VARIABLE)
  46. if(NOT DEFINED "${VARIABLE}")
  47. set(CMAKE_CONFIGURABLE_FILE_CONTENT "/* */\n")
  48. if(CMAKE_REQUIRED_INCLUDES)
  49. set(CHECK_INCLUDE_FILES_INCLUDE_DIRS "-DINCLUDE_DIRECTORIES=${CMAKE_REQUIRED_INCLUDES}")
  50. else()
  51. set(CHECK_INCLUDE_FILES_INCLUDE_DIRS)
  52. endif()
  53. set(CHECK_INCLUDE_FILES_CONTENT "/* */\n")
  54. set(MACRO_CHECK_INCLUDE_FILES_FLAGS ${CMAKE_REQUIRED_FLAGS})
  55. foreach(FILE ${INCLUDE})
  56. set(CMAKE_CONFIGURABLE_FILE_CONTENT
  57. "${CMAKE_CONFIGURABLE_FILE_CONTENT}#include <${FILE}>\n")
  58. endforeach()
  59. set(CMAKE_CONFIGURABLE_FILE_CONTENT
  60. "${CMAKE_CONFIGURABLE_FILE_CONTENT}\n\nint main(void){return 0;}\n")
  61. configure_file("${CMAKE_ROOT}/Modules/CMakeConfigurableFile.in"
  62. "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFiles.c" @ONLY)
  63. set(_INCLUDE ${INCLUDE}) # remove empty elements
  64. if("${_INCLUDE}" MATCHES "^([^;]+);.+;([^;]+)$")
  65. list(LENGTH _INCLUDE _INCLUDE_LEN)
  66. set(_description "${_INCLUDE_LEN} include files ${CMAKE_MATCH_1}, ..., ${CMAKE_MATCH_2}")
  67. elseif("${_INCLUDE}" MATCHES "^([^;]+);([^;]+)$")
  68. set(_description "include files ${CMAKE_MATCH_1}, ${CMAKE_MATCH_2}")
  69. else()
  70. set(_description "include file ${_INCLUDE}")
  71. endif()
  72. if(NOT CMAKE_REQUIRED_QUIET)
  73. message(STATUS "Looking for ${_description}")
  74. endif()
  75. try_compile(${VARIABLE}
  76. ${CMAKE_BINARY_DIR}
  77. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFiles.c
  78. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  79. CMAKE_FLAGS
  80. -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_INCLUDE_FILES_FLAGS}
  81. "${CHECK_INCLUDE_FILES_INCLUDE_DIRS}"
  82. OUTPUT_VARIABLE OUTPUT)
  83. if(${VARIABLE})
  84. if(NOT CMAKE_REQUIRED_QUIET)
  85. message(STATUS "Looking for ${_description} - found")
  86. endif()
  87. set(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}")
  88. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  89. "Determining if files ${INCLUDE} "
  90. "exist passed with the following output:\n"
  91. "${OUTPUT}\n\n")
  92. else()
  93. if(NOT CMAKE_REQUIRED_QUIET)
  94. message(STATUS "Looking for ${_description} - not found")
  95. endif()
  96. set(${VARIABLE} "" CACHE INTERNAL "Have includes ${INCLUDE}")
  97. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  98. "Determining if files ${INCLUDE} "
  99. "exist failed with the following output:\n"
  100. "${OUTPUT}\nSource:\n${CMAKE_CONFIGURABLE_FILE_CONTENT}\n")
  101. endif()
  102. endif()
  103. endmacro()