From db28904467764a496be7cde1c903368afc1f8da3 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Fri, 29 Jul 2005 13:19:44 -0400 Subject: [PATCH] ENH: change loc of log files --- Source/kwsys/kwsysPlatformCxxTests.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/kwsys/kwsysPlatformCxxTests.cmake b/Source/kwsys/kwsysPlatformCxxTests.cmake index b3004ca2b..0bd8b6211 100644 --- a/Source/kwsys/kwsysPlatformCxxTests.cmake +++ b/Source/kwsys/kwsysPlatformCxxTests.cmake @@ -7,10 +7,10 @@ MACRO(KWSYS_PLATFORM_CXX_TEST var description invert) COMPILE_DEFINITIONS -DTEST_${var} ${KWSYS_PLATFORM_CXX_TEST_DEFINES} OUTPUT_VARIABLE OUTPUT) IF(${var}_COMPILED) - WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeOutput.log + WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/CMakeOutput.log "${description} compiled with the following output:\n${OUTPUT}\n\n" APPEND) ELSE(${var}_COMPILED) - WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeError.log + WRITE_FILE(${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/CMakeError.log "${description} failed to compile with the following output:\n${OUTPUT}\n\n" APPEND) ENDIF(${var}_COMPILED) IF(${invert} MATCHES INVERT)