2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# TestForANSIStreamHeaders
|
|
|
|
# ------------------------
|
2002-09-12 11:14:50 -04:00
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
# Test for compiler support of ANSI stream headers iostream, etc.
|
|
|
|
#
|
|
|
|
# check if the compiler supports the standard ANSI iostream header
|
|
|
|
# (without the .h)
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CMAKE_NO_ANSI_STREAM_HEADERS - defined by the results
|
2009-09-28 11:46:51 -04:00
|
|
|
|
2012-11-03 21:35:44 +01:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckIncludeFileCXX.cmake)
|
2002-09-12 11:14:50 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
if(NOT CMAKE_NO_ANSI_STREAM_HEADERS)
|
2002-11-21 14:45:21 -05:00
|
|
|
CHECK_INCLUDE_FILE_CXX(iostream CMAKE_ANSI_STREAM_HEADERS)
|
2012-08-13 13:47:32 -04:00
|
|
|
if (CMAKE_ANSI_STREAM_HEADERS)
|
|
|
|
set (CMAKE_NO_ANSI_STREAM_HEADERS 0 CACHE INTERNAL
|
2002-11-18 10:52:09 -05:00
|
|
|
"Does the compiler support headers like iostream.")
|
2012-08-13 13:50:14 -04:00
|
|
|
else ()
|
2012-08-13 13:47:32 -04:00
|
|
|
set (CMAKE_NO_ANSI_STREAM_HEADERS 1 CACHE INTERNAL
|
2002-09-12 11:14:50 -04:00
|
|
|
"Does the compiler support headers like iostream.")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif ()
|
2002-09-12 11:14:50 -04:00
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
mark_as_advanced(CMAKE_NO_ANSI_STREAM_HEADERS)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2002-09-12 16:36:56 -04:00
|
|
|
|
2002-09-12 11:14:50 -04:00
|
|
|
|