2005-12-14 21:51:08 +03:00
|
|
|
# - Test for compiler support of ANSI stream headers iostream, etc.
|
2009-10-02 16:44:51 +04:00
|
|
|
# check if the compiler supports the standard ANSI iostream header (without the .h)
|
2005-12-15 22:17:43 +03:00
|
|
|
# CMAKE_NO_ANSI_STREAM_HEADERS - defined by the results
|
2002-09-12 19:14:50 +04:00
|
|
|
#
|
2009-09-28 19:46:51 +04:00
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2002-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2004-08-27 06:52:53 +04:00
|
|
|
INCLUDE(CheckIncludeFileCXX)
|
2002-09-12 19:14:50 +04:00
|
|
|
|
2002-11-18 18:52:09 +03:00
|
|
|
IF(NOT CMAKE_NO_ANSI_STREAM_HEADERS)
|
2002-11-21 22:45:21 +03:00
|
|
|
CHECK_INCLUDE_FILE_CXX(iostream CMAKE_ANSI_STREAM_HEADERS)
|
2002-11-18 18:52:09 +03:00
|
|
|
IF (CMAKE_ANSI_STREAM_HEADERS)
|
|
|
|
SET (CMAKE_NO_ANSI_STREAM_HEADERS 0 CACHE INTERNAL
|
|
|
|
"Does the compiler support headers like iostream.")
|
2002-11-21 22:45:21 +03:00
|
|
|
ELSE (CMAKE_ANSI_STREAM_HEADERS)
|
2002-11-18 18:52:09 +03:00
|
|
|
SET (CMAKE_NO_ANSI_STREAM_HEADERS 1 CACHE INTERNAL
|
2002-09-12 19:14:50 +04:00
|
|
|
"Does the compiler support headers like iostream.")
|
2002-11-18 18:52:09 +03:00
|
|
|
ENDIF (CMAKE_ANSI_STREAM_HEADERS)
|
2002-09-12 19:14:50 +04:00
|
|
|
|
2002-11-18 18:52:09 +03:00
|
|
|
MARK_AS_ADVANCED(CMAKE_NO_ANSI_STREAM_HEADERS)
|
|
|
|
ENDIF(NOT CMAKE_NO_ANSI_STREAM_HEADERS)
|
2002-09-13 00:36:56 +04:00
|
|
|
|
2002-09-12 19:14:50 +04:00
|
|
|
|