forked from InsightSoftwareConsortium/ITK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoveTemporaryFiles.cmake.in
More file actions
22 lines (19 loc) · 891 Bytes
/
Copy pathRemoveTemporaryFiles.cmake.in
File metadata and controls
22 lines (19 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Remove temporary files that are generated by build submissions,
# cmake configure and testing
#
# Cleanup old dashboard submissions
file(GLOB OLD_DASHBOARDS "@ITK_BINARY_DIR@/Testing/20*")
foreach(OLD ${OLD_DASHBOARDS})
message(" Removing old submission in ${OLD}")
file(REMOVE_RECURSE "${OLD}")
endforeach()
# Cleanup the Testing/Temporary directory
file(REMOVE_RECURSE "@ITK_BINARY_DIR@/Testing/Temporary")
# Cleanup the CMake Error and Output logs
file(REMOVE "@ITK_BINARY_DIR@${CMAKE_FILES_DIRECTORY}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log")
file(REMOVE "@ITK_BINARY_DIR@${CMAKE_FILES_DIRECTORY}/CMakeOutput.log")
file(REMOVE "@ITK_BINARY_DIR@/CMakeOutput.log")
file(REMOVE "@ITK_BINARY_DIR@${CMAKE_FILES_DIRECTORY}${CMAKE_FILES_DIRECTORY}/CMakeError.log")
file(REMOVE "@ITK_BINARY_DIR@${CMAKE_FILES_DIRECTORY}/CMakeError.log")
file(REMOVE "@ITK_BINARY_DIR@/CMakeError.log")