2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# TestForSTDNamespace
|
|
|
|
# -------------------
|
|
|
|
#
|
|
|
|
# Test for std:: namespace support
|
|
|
|
#
|
2002-11-08 15:46:08 -05:00
|
|
|
# check if the compiler supports std:: on stl classes
|
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CMAKE_NO_STD_NAMESPACE - defined by the results
|
2009-09-28 11: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.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:46:51 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2014-09-08 09:58:33 -04:00
|
|
|
if(NOT DEFINED CMAKE_STD_NAMESPACE)
|
2012-08-13 13:47:32 -04:00
|
|
|
message(STATUS "Check for STD namespace")
|
|
|
|
try_compile(CMAKE_STD_NAMESPACE ${CMAKE_BINARY_DIR}
|
2003-11-12 16:51:09 -05:00
|
|
|
${CMAKE_ROOT}/Modules/TestForSTDNamespace.cxx
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2012-08-13 13:47:32 -04:00
|
|
|
if (CMAKE_STD_NAMESPACE)
|
|
|
|
message(STATUS "Check for STD namespace - found")
|
|
|
|
set (CMAKE_NO_STD_NAMESPACE 0 CACHE INTERNAL
|
2002-11-18 10:52:09 -05:00
|
|
|
"Does the compiler support std::.")
|
2012-08-13 13:47:32 -04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 11:59:07 -04:00
|
|
|
"Determining if the CXX compiler has std namespace passed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2012-08-13 13:50:14 -04:00
|
|
|
else ()
|
2012-08-13 13:47:32 -04:00
|
|
|
message(STATUS "Check for STD namespace - not found")
|
|
|
|
set (CMAKE_NO_STD_NAMESPACE 1 CACHE INTERNAL
|
2002-11-08 15:46:08 -05:00
|
|
|
"Does the compiler support std::.")
|
2012-08-13 13:47:32 -04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2003-08-08 11:59:07 -04:00
|
|
|
"Determining if the CXX compiler has std namespace failed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif ()
|
|
|
|
endif()
|
2003-03-11 17:35:23 -05:00
|
|
|
|
2002-11-08 15:46:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|