https://github.com/Kitware/CMake
Raw File
Tip revision: e1e6e105215172ec37b3faf7f929c8506e285297 authored by Bill Hoffman on 01 June 2006, 13:38:12 UTC
ENH: change the version number to match the release for cygwin
Tip revision: e1e6e10
TestForANSIStreamHeaders.cmake
# - Test for compiler support of ANSI stream headers iostream, etc.
# check if we they have the standard ansi stream files (without the .h)
#  CMAKE_NO_ANSI_STREAM_HEADERS - defined by the results
#
INCLUDE(CheckIncludeFileCXX)

IF(NOT CMAKE_NO_ANSI_STREAM_HEADERS)
  CHECK_INCLUDE_FILE_CXX(iostream CMAKE_ANSI_STREAM_HEADERS)
  IF (CMAKE_ANSI_STREAM_HEADERS)
    SET (CMAKE_NO_ANSI_STREAM_HEADERS 0 CACHE INTERNAL 
         "Does the compiler support headers like iostream.")
  ELSE (CMAKE_ANSI_STREAM_HEADERS)   
    SET (CMAKE_NO_ANSI_STREAM_HEADERS 1 CACHE INTERNAL 
       "Does the compiler support headers like iostream.")
  ENDIF (CMAKE_ANSI_STREAM_HEADERS)

  MARK_AS_ADVANCED(CMAKE_NO_ANSI_STREAM_HEADERS)
ENDIF(NOT CMAKE_NO_ANSI_STREAM_HEADERS)


back to top