23 lines
899 B
CMake
23 lines
899 B
CMake
cmake_policy(VERSION 3.16)
|
|
|
|
if(NOT EXISTS "/mnt/data/Devel/HeurAMS/KiriMemo/build/install_manifest.txt")
|
|
message(FATAL_ERROR "Cannot find install manifest: /mnt/data/Devel/HeurAMS/KiriMemo/build/install_manifest.txt")
|
|
endif()
|
|
|
|
file(READ "/mnt/data/Devel/HeurAMS/KiriMemo/build/install_manifest.txt" files)
|
|
string(REGEX REPLACE "\n" ";" files "${files}")
|
|
foreach(file ${files})
|
|
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
|
|
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
|
|
execute_process(
|
|
COMMAND "/usr/bin/cmake" -E remove "$ENV{DESTDIR}${file}"
|
|
RESULT_VARIABLE rm_retval
|
|
)
|
|
if(NOT "${rm_retval}" STREQUAL 0)
|
|
message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
|
|
endif()
|
|
else()
|
|
message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
|
|
endif()
|
|
endforeach()
|