2016-09-27 22:01:08 +03: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 19:17:36 +04:00
|
|
|
#.rst:
|
|
|
|
# TestForSSTREAM
|
|
|
|
# --------------
|
|
|
|
#
|
|
|
|
# Test for compiler support of ANSI sstream header
|
|
|
|
#
|
2009-10-02 16:44:51 +04:00
|
|
|
# check if the compiler supports the standard ANSI sstream header
|
2006-01-17 18:21:45 +03:00
|
|
|
#
|
2013-10-15 19:17:36 +04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CMAKE_NO_ANSI_STRING_STREAM - defined by the results
|
2009-09-28 19:46:51 +04:00
|
|
|
|
2014-09-08 17:58:33 +04:00
|
|
|
if(NOT DEFINED CMAKE_HAS_ANSI_STRING_STREAM)
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Check for sstream")
|
|
|
|
try_compile(CMAKE_HAS_ANSI_STRING_STREAM ${CMAKE_BINARY_DIR}
|
2006-01-17 18:21:45 +03:00
|
|
|
${CMAKE_ROOT}/Modules/TestForSSTREAM.cxx
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2012-08-13 21:47:32 +04:00
|
|
|
if (CMAKE_HAS_ANSI_STRING_STREAM)
|
|
|
|
message(STATUS "Check for sstream - found")
|
|
|
|
set (CMAKE_NO_ANSI_STRING_STREAM 0 CACHE INTERNAL
|
2006-01-17 18:21:45 +03:00
|
|
|
"Does the compiler support sstream")
|
2012-08-13 21:47:32 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2006-01-17 18:21:45 +03:00
|
|
|
"Determining if the CXX compiler has sstream passed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
else ()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(STATUS "Check for sstream - not found")
|
|
|
|
set (CMAKE_NO_ANSI_STRING_STREAM 1 CACHE INTERNAL
|
2006-01-17 18:21:45 +03:00
|
|
|
"Does the compiler support sstream")
|
2012-08-13 21:47:32 +04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2006-01-17 18:21:45 +03:00
|
|
|
"Determining if the CXX compiler has sstream failed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
|
|
|
endif()
|
2006-01-17 18:21:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|