mirror of
https://github.com/rd235/cado
synced 2025-01-14 14:46:14 +01:00
42 lines
1.1 KiB
CMake
42 lines
1.1 KiB
CMake
|
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 bash "-c" "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 bash "-c" "userdel cado"
|
||
|
OUTPUT_VARIABLE remove_user
|
||
|
)
|
||
|
if(${remove_user})
|
||
|
message(FATAL_ERROR "Failed to remove user: 'cado'.")
|
||
|
endif()
|
||
|
|
||
|
message(STATUS "Removing folder: '/usr/local/var/spool/cado'")
|
||
|
execute_process(
|
||
|
COMMAND bash "-c" "rm -r /usr/local/var/spool/cado"
|
||
|
OUTPUT_VARIABLE remove_spool_folder
|
||
|
)
|
||
|
if("${remove_spool_folder}")
|
||
|
message(FATAL_ERROR "Failed to remove folder: '/usr/local/var/spool/cado'.")
|
||
|
endif()
|