2005-12-14 21:51:08 +03:00
|
|
|
# - Check for ANSI for scope support
|
2009-10-02 16:44:51 +04:00
|
|
|
# Check if the compiler restricts the scope of variables declared in a for-init-statement to the loop body.
|
2007-12-18 01:57:57 +03:00
|
|
|
# CMAKE_NO_ANSI_FOR_SCOPE - holds result
|
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.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if("CMAKE_ANSI_FOR_SCOPE" MATCHES "^CMAKE_ANSI_FOR_SCOPE$")
|
|
|
|
message(STATUS "Check for ANSI scope")
|
|
|
|
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)
|
2012-08-13 21:47:32 +04: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.")
|
2012-08-13 21:47: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")
|
2012-08-13 21:50:14 +04:00
|
|
|
else ()
|
2012-08-13 21:47:32 +04:00
|
|
|
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.")
|
2012-08-13 21:47: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")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif ()
|
|
|
|
endif()
|
2003-02-11 05:56:32 +03:00
|
|
|
|
2002-11-08 23:46:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|