2005-12-14 21:51:08 +03:00
|
|
|
# - Test for std:: namespace support
|
2002-11-08 23:46:08 +03:00
|
|
|
# check if the compiler supports std:: on stl classes
|
2005-12-15 22:17:43 +03:00
|
|
|
# CMAKE_NO_STD_NAMESPACE - defined by the results
|
2002-11-08 23:46:08 +03: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.)
|
|
|
|
|
2003-03-12 01:35:23 +03:00
|
|
|
IF("CMAKE_STD_NAMESPACE" MATCHES "^CMAKE_STD_NAMESPACE$")
|
2002-11-18 18:52:09 +03:00
|
|
|
MESSAGE(STATUS "Check for STD namespace")
|
2002-12-17 22:54:25 +03:00
|
|
|
TRY_COMPILE(CMAKE_STD_NAMESPACE ${CMAKE_BINARY_DIR}
|
2003-11-13 00:51:09 +03:00
|
|
|
${CMAKE_ROOT}/Modules/TestForSTDNamespace.cxx
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2002-11-18 18:52:09 +03:00
|
|
|
IF (CMAKE_STD_NAMESPACE)
|
|
|
|
MESSAGE(STATUS "Check for STD namespace - found")
|
|
|
|
SET (CMAKE_NO_STD_NAMESPACE 0 CACHE INTERNAL
|
|
|
|
"Does the compiler support std::.")
|
2006-06-14 20:28:32 +04:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if the CXX compiler has std namespace passed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ELSE (CMAKE_STD_NAMESPACE)
|
|
|
|
MESSAGE(STATUS "Check for STD namespace - not found")
|
|
|
|
SET (CMAKE_NO_STD_NAMESPACE 1 CACHE INTERNAL
|
2002-11-08 23:46:08 +03:00
|
|
|
"Does the compiler support std::.")
|
2006-06-14 20:28:32 +04:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if the CXX compiler has std namespace failed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ENDIF (CMAKE_STD_NAMESPACE)
|
2003-03-12 01:35:23 +03:00
|
|
|
ENDIF("CMAKE_STD_NAMESPACE" MATCHES "^CMAKE_STD_NAMESPACE$")
|
|
|
|
|
2002-11-08 23:46:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
|