ERR: Removed use of FILE command and using WRITE_FILE instead. We would still like CMake 1.6 to be able to build CMake CVS, and kwsys is used.
This commit is contained in:
parent
f3d1225669
commit
fca398f961
|
@ -7,11 +7,11 @@ MACRO(KWSYS_PLATFORM_CXX_TEST var description invert)
|
||||||
COMPILE_DEFINITIONS -DTEST_${var}
|
COMPILE_DEFINITIONS -DTEST_${var}
|
||||||
OUTPUT_VARIABLE OUTPUT)
|
OUTPUT_VARIABLE OUTPUT)
|
||||||
IF(${var}_COMPILED)
|
IF(${var}_COMPILED)
|
||||||
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/CMakeOutput.log
|
WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeOutput.log
|
||||||
"${description} compiled with the following output:\n${OUTPUT}\n\n")
|
"${description} compiled with the following output:\n${OUTPUT}\n\n" APPEND)
|
||||||
ELSE(${var}_COMPILED)
|
ELSE(${var}_COMPILED)
|
||||||
FILE(APPEND ${CMAKE_CURRENT_BINARY_DIR}/CMakeError.log
|
WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeError.log
|
||||||
"${description} failed to compile with the following output:\n${OUTPUT}\n\n")
|
"${description} failed to compile with the following output:\n${OUTPUT}\n\n" APPEND)
|
||||||
ENDIF(${var}_COMPILED)
|
ENDIF(${var}_COMPILED)
|
||||||
IF(${invert} MATCHES INVERT)
|
IF(${invert} MATCHES INVERT)
|
||||||
IF(${var}_COMPILED)
|
IF(${var}_COMPILED)
|
||||||
|
|
Loading…
Reference in New Issue