Explorar el Código

BUG: dont put the output of a try compile in the output because visual stduio 7 ide will thing there were errors

Bill Hoffman hace 21 años
padre
commit
d53bf33dda
Se han modificado 1 ficheros con 0 adiciones y 6 borrados
  1. 0 6
      Tests/TryCompile/CMakeLists.txt

+ 0 - 6
Tests/TryCompile/CMakeLists.txt

@@ -8,7 +8,6 @@ TRY_COMPILE(SHOULD_PASS
 IF(NOT SHOULD_PASS)
 IF(NOT SHOULD_PASS)
   MESSAGE(SEND_ERROR "should pass failed ")
   MESSAGE(SEND_ERROR "should pass failed ")
 ENDIF(NOT SHOULD_PASS)
 ENDIF(NOT SHOULD_PASS)
-MESSAGE( "output from TRY_COMPILE ${TRY_OUT} ")
 
 
 # try to compile a file that should not compile
 # try to compile a file that should not compile
 TRY_COMPILE(SHOULD_FAIL
 TRY_COMPILE(SHOULD_FAIL
@@ -18,7 +17,6 @@ TRY_COMPILE(SHOULD_FAIL
 IF(SHOULD_FAIL)
 IF(SHOULD_FAIL)
    MESSAGE(SEND_ERROR "Should fail passed")
    MESSAGE(SEND_ERROR "Should fail passed")
 ENDIF(SHOULD_FAIL)
 ENDIF(SHOULD_FAIL)
-MESSAGE("output from TRY_COMPILE ${TRY_OUT} ")
 
 
 # try to compile a file that should compile
 # try to compile a file that should compile
 TRY_COMPILE(SHOULD_PASS
 TRY_COMPILE(SHOULD_PASS
@@ -28,7 +26,6 @@ TRY_COMPILE(SHOULD_PASS
 IF(NOT SHOULD_PASS)
 IF(NOT SHOULD_PASS)
   MESSAGE(SEND_ERROR "should pass failed ")
   MESSAGE(SEND_ERROR "should pass failed ")
 ENDIF(NOT SHOULD_PASS)
 ENDIF(NOT SHOULD_PASS)
-MESSAGE("output from TRY_COMPILE ${TRY_OUT} ")
 
 
 # try to compile a file that should not compile
 # try to compile a file that should not compile
 TRY_COMPILE(SHOULD_FAIL
 TRY_COMPILE(SHOULD_FAIL
@@ -38,7 +35,6 @@ TRY_COMPILE(SHOULD_FAIL
 IF(SHOULD_FAIL)
 IF(SHOULD_FAIL)
    MESSAGE(SEND_ERROR "Should fail passed")
    MESSAGE(SEND_ERROR "Should fail passed")
 ENDIF(SHOULD_FAIL)
 ENDIF(SHOULD_FAIL)
-MESSAGE("output from TRY_COMPILE ${TRY_OUT} ")
 
 
 IF(NOT SHOULD_FAIL)
 IF(NOT SHOULD_FAIL)
   IF(SHOULD_PASS)
   IF(SHOULD_PASS)
@@ -56,7 +52,6 @@ IF (CMAKE_ANSI_FOR_SCOPE)
 ELSE(CMAKE_ANSI_FOR_SCOPE)
 ELSE(CMAKE_ANSI_FOR_SCOPE)
    MESSAGE("Compiler does not support ansi for scope")
    MESSAGE("Compiler does not support ansi for scope")
 ENDIF(CMAKE_ANSI_FOR_SCOPE)
 ENDIF(CMAKE_ANSI_FOR_SCOPE)
-MESSAGE("output from TRY_COMPILE ${OUT} ")
 
 
 TRY_COMPILE(CMAKE_ANSI_FOR_SCOPE   ${TryCompile_BINARY_DIR}/CMakeTmp 
 TRY_COMPILE(CMAKE_ANSI_FOR_SCOPE   ${TryCompile_BINARY_DIR}/CMakeTmp 
     ${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx OUTPUT_VARIABLE OUT)
     ${CMAKE_ROOT}/Modules/TestForAnsiForScope.cxx OUTPUT_VARIABLE OUT)
@@ -65,7 +60,6 @@ IF (CMAKE_ANSI_FOR_SCOPE)
 ELSE(CMAKE_ANSI_FOR_SCOPE)
 ELSE(CMAKE_ANSI_FOR_SCOPE)
    MESSAGE("Compiler does not support ansi for scope")
    MESSAGE("Compiler does not support ansi for scope")
 ENDIF(CMAKE_ANSI_FOR_SCOPE)
 ENDIF(CMAKE_ANSI_FOR_SCOPE)
-MESSAGE("output from TRY_COMPILE ${OUT} ")
         
         
 
 
 MESSAGE("use the module now")
 MESSAGE("use the module now")