chore: 初始化项目
This commit is contained in:
22
build/ecm_uninstall.cmake
Normal file
22
build/ecm_uninstall.cmake
Normal file
@@ -0,0 +1,22 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user