CheckIncludeFileCXX.cmake 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #.rst:
  2. # CheckIncludeFileCXX
  3. # -------------------
  4. #
  5. # Provides a macro to check if a header file can be included in ``CXX``.
  6. #
  7. # .. command:: CHECK_INCLUDE_FILE_CXX
  8. #
  9. # ::
  10. #
  11. # CHECK_INCLUDE_FILE_CXX(<include> <variable> [<flags>])
  12. #
  13. # Check if the given ``<include>`` file may be included in a ``CXX``
  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 modules :module:`CheckIncludeFile` and :module:`CheckIncludeFiles`
  31. # to check for one or more ``C`` headers.
  32. #=============================================================================
  33. # Copyright 2002-2009 Kitware, Inc.
  34. #
  35. # Distributed under the OSI-approved BSD License (the "License");
  36. # see accompanying file Copyright.txt for details.
  37. #
  38. # This software is distributed WITHOUT ANY WARRANTY; without even the
  39. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  40. # See the License for more information.
  41. #=============================================================================
  42. # (To distribute this file outside of CMake, substitute the full
  43. # License text for the above reference.)
  44. macro(CHECK_INCLUDE_FILE_CXX INCLUDE VARIABLE)
  45. if(NOT DEFINED "${VARIABLE}" OR "x${${VARIABLE}}" STREQUAL "x${VARIABLE}")
  46. if(CMAKE_REQUIRED_INCLUDES)
  47. set(CHECK_INCLUDE_FILE_CXX_INCLUDE_DIRS "-DINCLUDE_DIRECTORIES=${CMAKE_REQUIRED_INCLUDES}")
  48. else()
  49. set(CHECK_INCLUDE_FILE_CXX_INCLUDE_DIRS)
  50. endif()
  51. set(MACRO_CHECK_INCLUDE_FILE_FLAGS ${CMAKE_REQUIRED_FLAGS})
  52. set(CHECK_INCLUDE_FILE_VAR ${INCLUDE})
  53. configure_file(${CMAKE_ROOT}/Modules/CheckIncludeFile.cxx.in
  54. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.cxx)
  55. if(NOT CMAKE_REQUIRED_QUIET)
  56. message(STATUS "Looking for C++ include ${INCLUDE}")
  57. endif()
  58. if(${ARGC} EQUAL 3)
  59. set(CMAKE_CXX_FLAGS_SAVE ${CMAKE_CXX_FLAGS})
  60. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ARGV2}")
  61. endif()
  62. try_compile(${VARIABLE}
  63. ${CMAKE_BINARY_DIR}
  64. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.cxx
  65. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  66. CMAKE_FLAGS
  67. -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_INCLUDE_FILE_FLAGS}
  68. "${CHECK_INCLUDE_FILE_CXX_INCLUDE_DIRS}"
  69. OUTPUT_VARIABLE OUTPUT)
  70. if(${ARGC} EQUAL 3)
  71. set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS_SAVE})
  72. endif()
  73. if(${VARIABLE})
  74. if(NOT CMAKE_REQUIRED_QUIET)
  75. message(STATUS "Looking for C++ include ${INCLUDE} - found")
  76. endif()
  77. set(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}")
  78. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  79. "Determining if the include file ${INCLUDE} "
  80. "exists passed with the following output:\n"
  81. "${OUTPUT}\n\n")
  82. else()
  83. if(NOT CMAKE_REQUIRED_QUIET)
  84. message(STATUS "Looking for C++ include ${INCLUDE} - not found")
  85. endif()
  86. set(${VARIABLE} "" CACHE INTERNAL "Have include ${INCLUDE}")
  87. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  88. "Determining if the include file ${INCLUDE} "
  89. "exists failed with the following output:\n"
  90. "${OUTPUT}\n\n")
  91. endif()
  92. endif()
  93. endmacro()