summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
committer3gg <3gg@shellblade.net>2025-08-30 16:53:58 -0700
commit6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch)
tree34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in
parent8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff)
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in')
-rw-r--r--src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in b/src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in
new file mode 100644
index 0000000..9a59b4f
--- /dev/null
+++ b/src/contrib/SDL-3.2.20/cmake/cmake_uninstall.cmake.in
@@ -0,0 +1,17 @@
1if (NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
2 message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_BINARY_DIR@/install_manifest.txt\"")
3endif()
4
5file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
6string(REGEX REPLACE "\n" ";" files "${files}")
7foreach(file ${files})
8 message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
9 execute_process(
10 COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
11 OUTPUT_VARIABLE rm_out
12 RESULT_VARIABLE rm_retval
13 )
14 if(NOT ${rm_retval} EQUAL 0)
15 message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
16 endif (NOT ${rm_retval} EQUAL 0)
17endforeach()