diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-18 15:52:09 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-18 15:52:09 (GMT) |
commit | 5b17658c91d88afab8220de0e9a00102f18d5758 (patch) | |
tree | 745a62f2a200df675783865dbbeba4670ab98c1d /Modules/TestForANSIForScope.cmake | |
parent | ebb6477dbb429573f05e948fca890b62a234afaf (diff) | |
download | CMake-5b17658c91d88afab8220de0e9a00102f18d5758.zip CMake-5b17658c91d88afab8220de0e9a00102f18d5758.tar.gz CMake-5b17658c91d88afab8220de0e9a00102f18d5758.tar.bz2 |
Add more messages, make messages look the same, add checks if test was already successfull
Diffstat (limited to 'Modules/TestForANSIForScope.cmake')
-rw-r--r-- | Modules/TestForANSIForScope.cmake | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/Modules/TestForANSIForScope.cmake b/Modules/TestForANSIForScope.cmake index c6434b4..3265f00 100644 --- a/Modules/TestForANSIForScope.cmake +++ b/Modules/TestForANSIForScope.cmake @@ -4,15 +4,20 @@ # CMAKE_NO_STD_NAMESPACE - defined accoreding to the results # -TRY_COMPILE(CMAKE_ANSI_FOR_SCOPE ${PROJECT_BINARY_DIR} - ${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx) -IF (CMAKE_ANSI_FOR_SCOPE) - SET (CMAKE_NO_ANSI_FOR_SCOPE 0 CACHE INTERNAL +IF(NOT CMAKE_ANSI_FOR_SCOPE) + MESSAGE(STATUS "Check for ANSI scope") + TRY_COMPILE(CMAKE_ANSI_FOR_SCOPE ${PROJECT_BINARY_DIR} + ${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx) + IF (CMAKE_ANSI_FOR_SCOPE) + MESSAGE(STATUS "Check for ANSI scope - found") + SET (CMAKE_NO_ANSI_FOR_SCOPE 0 CACHE INTERNAL + "Does the compiler support ansi for scope.") + ELSE (CMAKE_ANSI_FOR_SCOPE) + MESSAGE(STATUS "Check for ANSI scope - not found") + SET (CMAKE_NO_ANSI_FOR_SCOPE 1 CACHE INTERNAL "Does the compiler support ansi for scope.") -ELSE (CMAKE_ANSI_FOR_SCOPE) - SET (CMAKE_NO_ANSI_FOR_SCOPE 1 CACHE INTERNAL - "Does the compiler support ansi for scope.") -ENDIF (CMAKE_ANSI_FOR_SCOPE) + ENDIF (CMAKE_ANSI_FOR_SCOPE) +ENDIF(NOT CMAKE_ANSI_FOR_SCOPE) |