CheckIncludeFile.cmake 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. #.rst:
  2. # CheckIncludeFile
  3. # ----------------
  4. #
  5. # Provides a macro to check if a header file can be included in ``C``.
  6. #
  7. # .. command:: CHECK_INCLUDE_FILE
  8. #
  9. # ::
  10. #
  11. # CHECK_INCLUDE_FILE(<include> <variable> [<flags>])
  12. #
  13. # Check if the given ``<include>`` file may be included in a ``C``
  14. # source file and store the result in an internal cache entry named
  15. # ``<variable>``. The optional third argument may be used to add
  16. # compilation flags to the check (or use ``CMAKE_REQUIRED_FLAGS`` below).
  17. #
  18. # The following variables may be set before calling this macro to modify
  19. # the way the check is run:
  20. #
  21. # ``CMAKE_REQUIRED_FLAGS``
  22. # string of compile command line flags
  23. # ``CMAKE_REQUIRED_DEFINITIONS``
  24. # list of macros to define (-DFOO=bar)
  25. # ``CMAKE_REQUIRED_INCLUDES``
  26. # list of include directories
  27. # ``CMAKE_REQUIRED_QUIET``
  28. # execute quietly without messages
  29. #
  30. # See the :module:`CheckIncludeFiles` module to check for multiple headers
  31. # at once. See the :module:`CheckIncludeFileCXX` module to check for headers
  32. # using the ``CXX`` language.
  33. #=============================================================================
  34. # Copyright 2002-2009 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_FILE INCLUDE VARIABLE)
  46. if(NOT DEFINED "${VARIABLE}")
  47. if(CMAKE_REQUIRED_INCLUDES)
  48. set(CHECK_INCLUDE_FILE_C_INCLUDE_DIRS "-DINCLUDE_DIRECTORIES=${CMAKE_REQUIRED_INCLUDES}")
  49. else()
  50. set(CHECK_INCLUDE_FILE_C_INCLUDE_DIRS)
  51. endif()
  52. set(MACRO_CHECK_INCLUDE_FILE_FLAGS ${CMAKE_REQUIRED_FLAGS})
  53. set(CHECK_INCLUDE_FILE_VAR ${INCLUDE})
  54. configure_file(${CMAKE_ROOT}/Modules/CheckIncludeFile.c.in
  55. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.c)
  56. if(NOT CMAKE_REQUIRED_QUIET)
  57. message(STATUS "Looking for ${INCLUDE}")
  58. endif()
  59. if(${ARGC} EQUAL 3)
  60. set(CMAKE_C_FLAGS_SAVE ${CMAKE_C_FLAGS})
  61. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${ARGV2}")
  62. endif()
  63. try_compile(${VARIABLE}
  64. ${CMAKE_BINARY_DIR}
  65. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.c
  66. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  67. CMAKE_FLAGS
  68. -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_INCLUDE_FILE_FLAGS}
  69. "${CHECK_INCLUDE_FILE_C_INCLUDE_DIRS}"
  70. OUTPUT_VARIABLE OUTPUT)
  71. if(${ARGC} EQUAL 3)
  72. set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS_SAVE})
  73. endif()
  74. if(${VARIABLE})
  75. if(NOT CMAKE_REQUIRED_QUIET)
  76. message(STATUS "Looking for ${INCLUDE} - found")
  77. endif()
  78. set(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}")
  79. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  80. "Determining if the include file ${INCLUDE} "
  81. "exists passed with the following output:\n"
  82. "${OUTPUT}\n\n")
  83. else()
  84. if(NOT CMAKE_REQUIRED_QUIET)
  85. message(STATUS "Looking for ${INCLUDE} - not found")
  86. endif()
  87. set(${VARIABLE} "" CACHE INTERNAL "Have include ${INCLUDE}")
  88. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  89. "Determining if the include file ${INCLUDE} "
  90. "exists failed with the following output:\n"
  91. "${OUTPUT}\n\n")
  92. endif()
  93. endif()
  94. endmacro()