Files
Osmium/deps/glfw-3.4/CMake/cmake_uninstall.cmake.in

30 lines
1.1 KiB
CMake
Raw Normal View History

2025-07-11 02:28:33 +03:00
2025-07-15 03:08:42 +03:00
if (NOT EXISTS "@GLFW_BINARY_DIR@/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: \"@GLFW_BINARY_DIR@/install_manifest.txt\"")
2025-07-11 02:28:33 +03:00
endif()
2025-07-15 03:08:42 +03:00
file(READ "@GLFW_BINARY_DIR@/install_manifest.txt" files)
2025-07-11 02:28:33 +03:00
string(REGEX REPLACE "\n" ";" files "${files}")
foreach (file ${files})
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
if (EXISTS "$ENV{DESTDIR}${file}")
2025-07-15 03:08:42 +03:00
exec_program("@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
2025-07-11 02:28:33 +03:00
OUTPUT_VARIABLE rm_out
RETURN_VALUE rm_retval)
if (NOT "${rm_retval}" STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
endif()
elseif (IS_SYMLINK "$ENV{DESTDIR}${file}")
2025-07-15 03:08:42 +03:00
EXEC_PROGRAM("@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
2025-07-11 02:28:33 +03:00
OUTPUT_VARIABLE rm_out
RETURN_VALUE rm_retval)
if (NOT "${rm_retval}" STREQUAL 0)
message(FATAL_ERROR "Problem when removing symlink \"$ENV{DESTDIR}${file}\"")
endif()
else()
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
endif()
endforeach()