-
Notifications
You must be signed in to change notification settings - Fork 1
/
distclean.cmake
68 lines (61 loc) · 2.3 KB
/
distclean.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# This CMake script will delete build directories and files to bring the
# package back to it's distribution state
# We want to start from the top of the source dir, so if we are in build
# we want to start one directory up
GET_FILENAME_COMPONENT(BASEDIR ${CMAKE_SOURCE_DIR} NAME)
IF(${BASEDIR} STREQUAL "build")
SET(TOPDIR "${CMAKE_SOURCE_DIR}/..")
ELSE()
SET(TOPDIR "${CMAKE_SOURCE_DIR}")
ENDIF()
MACRO(GET_PARENT_DIRECTORIES search_string return_list grandparents)
FILE(GLOB_RECURSE new_list ${search_string})
SET(dir_list "")
FOREACH(file_path ${new_list})
GET_FILENAME_COMPONENT(dir_path ${file_path} PATH)
# Remove an extra directory component to return grandparent
IF(${grandparents})
# Tack on a fake extension to trick CMake into removing a second
# path component
SET(dir_path "${dir_path}.tmp")
GET_FILENAME_COMPONENT(dir_path ${dir_path} PATH)
ENDIF(${grandparents})
SET(dir_list ${dir_list} ${dir_path})
ENDFOREACH()
LIST(REMOVE_DUPLICATES dir_list)
SET(${return_list} ${dir_list})
ENDMACRO()
# Find directories and files that we will want to remove
FILE(GLOB_RECURSE CMAKECACHE "${TOPDIR}/*CMakeCache.txt")
FILE(GLOB_RECURSE CMAKEINSTALL "${TOPDIR}/*cmake_install.cmake"
"${TOPDIR}/*install_manifest.txt")
FILE(GLOB_RECURSE MAKEFILE "${TOPDIR}/*Makefile")
FILE(GLOB_RECURSE CMAKETESTFILES "${TOPDIR}/*CTestTestfile.cmake")
SET(TOPDIRECTORIES "${TOPDIR}/lib"
"${TOPDIR}/test"
"${TOPDIR}/bin"
)
# CMake has trouble finding directories recursively, so locate these
# files and then save the parent directory of the files
GET_PARENT_DIRECTORIES(Makefile.cmake CMAKEFILES 0)
GET_PARENT_DIRECTORIES(LastTest.log CMAKETESTING 1)
# Place these files and directories into a list
SET(DEL ${TOPDIRECTORIES}
${CMAKECACHE}
${CMAKEINSTALL}
${MAKEFILE}
${CMAKEFILES}
${CMAKETESTING}
${CMAKETESTFILES}
)
# If we are not in the build dir, delete that as well
IF(NOT (${BASEDIR} STREQUAL "build"))
FILE(GLOB BUILD "${TOPDIR}/build")
SET(DEL ${DEL} ${BUILD})
ENDIF()
# Loop over the directories and delete each one
FOREACH(D ${DEL})
IF(EXISTS ${D})
FILE(REMOVE_RECURSE ${D})
ENDIF()
ENDFOREACH()