2005-12-14 21:51:08 +03:00
|
|
|
# - Check for ANSI for scope support
|
|
|
|
# Check if the compiler supports std:: on stl classes.
|
|
|
|
# CMAKE_NO_STD_NAMESPACE - holds result
|
2002-11-08 23:46:08 +03:00
|
|
|
#
|
|
|
|
|
2003-02-20 16:41:33 +03:00
|
|
|
IF("CMAKE_ANSI_FOR_SCOPE" MATCHES "^CMAKE_ANSI_FOR_SCOPE$")
|
2002-11-18 18:52:09 +03:00
|
|
|
MESSAGE(STATUS "Check for ANSI scope")
|
2002-12-17 22:54:25 +03:00
|
|
|
TRY_COMPILE(CMAKE_ANSI_FOR_SCOPE ${CMAKE_BINARY_DIR}
|
2003-11-13 00:51:09 +03:00
|
|
|
${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2002-11-18 18:52:09 +03:00
|
|
|
IF (CMAKE_ANSI_FOR_SCOPE)
|
|
|
|
MESSAGE(STATUS "Check for ANSI scope - found")
|
|
|
|
SET (CMAKE_NO_ANSI_FOR_SCOPE 0 CACHE INTERNAL
|
2003-08-08 19:59:07 +04:00
|
|
|
"Does the compiler support ansi for scope.")
|
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 understands ansi for scopes passed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ELSE (CMAKE_ANSI_FOR_SCOPE)
|
|
|
|
MESSAGE(STATUS "Check for ANSI scope - not found")
|
|
|
|
SET (CMAKE_NO_ANSI_FOR_SCOPE 1 CACHE INTERNAL
|
2003-08-08 19:59:07 +04:00
|
|
|
"Does the compiler support ansi for scope.")
|
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 understands ansi for scopes failed with "
|
|
|
|
"the following output:\n${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ENDIF (CMAKE_ANSI_FOR_SCOPE)
|
2003-02-20 16:41:33 +03:00
|
|
|
ENDIF("CMAKE_ANSI_FOR_SCOPE" MATCHES "^CMAKE_ANSI_FOR_SCOPE$")
|
2003-02-11 05:56:32 +03:00
|
|
|
|
2002-11-08 23:46:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|