-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathUninstall.cmake
41 lines (35 loc) · 1.06 KB
/
Uninstall.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
set(MANIFEST "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
if(NOT EXISTS ${MANIFEST})
message(FATAL_ERROR "Cannot find install manifest: '${MANIFEST}'")
endif()
file(STRINGS ${MANIFEST} files)
foreach(file ${files})
if(EXISTS ${file})
message(STATUS "Removing file: '${file}'")
execute_process(
COMMAND rm "${file}"
OUTPUT_VARIABLE remove_file
)
if(${remove_file})
message(FATAL_ERROR "Failed to remove file: '${file}'.")
endif()
else()
MESSAGE(STATUS "File '${file}' does not exist.")
endif()
endforeach(file)
message(STATUS "Removing user: '_cado'")
execute_process(
COMMAND userdel _cado
OUTPUT_VARIABLE remove_user
)
if(${remove_user})
message(FATAL_ERROR "Failed to remove user: '_cado'.")
endif()
message(STATUS "Removing folder: '${CADO_SPOOL_DIR}'")
execute_process(
COMMAND rm -r "${CADO_SPOOL_DIR}"
OUTPUT_VARIABLE remove_spool_folder
)
if("${remove_spool_folder}")
message(FATAL_ERROR "Failed to remove folder: '${CADO_SPOOL_DIR}'.")
endif()