-
Notifications
You must be signed in to change notification settings - Fork 16
/
cmake_uninstall.cmake.in
41 lines (36 loc) · 1.45 KB
/
cmake_uninstall.cmake.in
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
# see https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
if(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: @CMAKE_BINARY_DIR@/install_manifest.txt")
endif()
# Read the install manifest
file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
string(REGEX REPLACE "\n" ";" files "${files}")
# Uninstall files
foreach(file ${files})
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
execute_process(
COMMAND "@CMAKE_COMMAND@" -E remove "$ENV{DESTDIR}${file}"
OUTPUT_VARIABLE rm_out
RESULT_VARIABLE rm_retval
)
if(NOT "${rm_retval}" STREQUAL 0)
message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
endif()
else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
endif()
endforeach()
# Remove empty directories
foreach(file ${files})
get_filename_component(dir "$ENV{DESTDIR}${file}" DIRECTORY)
while(NOT "${dir}" STREQUAL "/" AND EXISTS "${dir}")
file(GLOB dir_content "${dir}/*")
if(dir_content)
break() # Directory is not empty, stop removing
endif()
message(STATUS "Removing empty directory ${dir}")
file(REMOVE_RECURSE "${dir}")
get_filename_component(dir "${dir}" DIRECTORY) # Move up one directory
endwhile()
endforeach()