diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-11 18:14:03 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-11 18:14:03 (GMT) |
commit | a17587c24449c2ae12fd0aaccf9d2ba36838eead (patch) | |
tree | 9698a8bb6d3c083cbd58a93496cbebd2da656166 /Modules/Dart.cmake | |
parent | 958987c27ffe95733e01c5d2313758922e60de74 (diff) | |
download | CMake-a17587c24449c2ae12fd0aaccf9d2ba36838eead.zip CMake-a17587c24449c2ae12fd0aaccf9d2ba36838eead.tar.gz CMake-a17587c24449c2ae12fd0aaccf9d2ba36838eead.tar.bz2 |
ENH: Replace WRITE_FILE with FILE(WRITE and FILE(APPEND. Replace MAKE_DIRECTORY with FILE(MAKE_DIRECTORY, replace STRING(ASCII things
Diffstat (limited to 'Modules/Dart.cmake')
-rw-r--r-- | Modules/Dart.cmake | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/Dart.cmake b/Modules/Dart.cmake index d1ba97e..5dc4cab 100644 --- a/Modules/Dart.cmake +++ b/Modules/Dart.cmake @@ -133,8 +133,8 @@ IF(BUILD_TESTING) IF (DART_ROOT) # make directories in the binary tree - MAKE_DIRECTORY(${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Dashboard) - MAKE_DIRECTORY(${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Sites/${SITE}/${BUILDNAME}) + FILE(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Dashboard + ${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Sites/${SITE}/${BUILDNAME}) # configure files CONFIGURE_FILE( @@ -224,7 +224,7 @@ IF(BUILD_TESTING) ELSE(DART_ROOT) # make directories in the binary tree - MAKE_DIRECTORY(${PROJECT_BINARY_DIR}/Testing/Temporary) + FILE(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/Testing/Temporary) GET_FILENAME_COMPONENT(CMAKE_HOST_PATH ${CMAKE_COMMAND} PATH) SET(CMAKE_TARGET_PATH ${EXECUTABLE_OUTPUT_PATH}) FIND_PROGRAM(CMAKE_CTEST_COMMAND ctest ${CMAKE_HOST_PATH} ${CMAKE_TARGET_PATH}) @@ -247,8 +247,8 @@ IF(BUILD_TESTING) FOREACH(mode Experimental Nightly Continuous NightlyMemoryCheck) ADD_CUSTOM_TARGET(${mode} ${CMAKE_CTEST_COMMAND} -D ${mode}) ENDFOREACH(mode) - - + + # for non IDE based builds nmake and make # add all these extra targets IF(${CMAKE_MAKE_PROGRAM} MATCHES make) |