TestForANSIStreamHeaders.cmake 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #.rst:
  2. # TestForANSIStreamHeaders
  3. # ------------------------
  4. #
  5. # Test for compiler support of ANSI stream headers iostream, etc.
  6. #
  7. # check if the compiler supports the standard ANSI iostream header
  8. # (without the .h)
  9. #
  10. # ::
  11. #
  12. # CMAKE_NO_ANSI_STREAM_HEADERS - defined by the results
  13. #=============================================================================
  14. # Copyright 2002-2009 Kitware, Inc.
  15. #
  16. # Distributed under the OSI-approved BSD License (the "License");
  17. # see accompanying file Copyright.txt for details.
  18. #
  19. # This software is distributed WITHOUT ANY WARRANTY; without even the
  20. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21. # See the License for more information.
  22. #=============================================================================
  23. # (To distribute this file outside of CMake, substitute the full
  24. # License text for the above reference.)
  25. include(${CMAKE_CURRENT_LIST_DIR}/CheckIncludeFileCXX.cmake)
  26. if(NOT CMAKE_NO_ANSI_STREAM_HEADERS)
  27. CHECK_INCLUDE_FILE_CXX(iostream CMAKE_ANSI_STREAM_HEADERS)
  28. if (CMAKE_ANSI_STREAM_HEADERS)
  29. set (CMAKE_NO_ANSI_STREAM_HEADERS 0 CACHE INTERNAL
  30. "Does the compiler support headers like iostream.")
  31. else ()
  32. set (CMAKE_NO_ANSI_STREAM_HEADERS 1 CACHE INTERNAL
  33. "Does the compiler support headers like iostream.")
  34. endif ()
  35. mark_as_advanced(CMAKE_NO_ANSI_STREAM_HEADERS)
  36. endif()