summaryrefslogtreecommitdiff
path: root/Modules/TestForANSIForScope.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-18 10:52:09 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-18 10:52:09 -0500
commit5b17658c91d88afab8220de0e9a00102f18d5758 (patch)
tree745a62f2a200df675783865dbbeba4670ab98c1d /Modules/TestForANSIForScope.cmake
parentebb6477dbb429573f05e948fca890b62a234afaf (diff)
downloadcmake-5b17658c91d88afab8220de0e9a00102f18d5758.tar.gz
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.cmake21
1 files changed, 13 insertions, 8 deletions
diff --git a/Modules/TestForANSIForScope.cmake b/Modules/TestForANSIForScope.cmake
index c6434b4e4d..3265f007d9 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)