chore: 初始化项目

This commit is contained in:
2026-05-01 18:18:19 +08:00
commit 4365a4a14f
624 changed files with 65390 additions and 0 deletions

22
build/ecm_uninstall.cmake Normal file
View 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()