diff options
author | 3gg <3gg@shellblade.net> | 2024-05-04 16:51:29 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-05-04 16:51:29 -0700 |
commit | 8222bfe56d4dabe8d92fc4b25ea1b0163b16f3e1 (patch) | |
tree | 763389e42276035ac134d94eb1dc32293b88d807 /src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in |
Initial commit.
Diffstat (limited to 'src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in')
-rw-r--r-- | src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in b/src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in new file mode 100644 index 0000000..1761561 --- /dev/null +++ b/src/contrib/SDL-2.30.2/cmake_uninstall.cmake.in | |||
@@ -0,0 +1,18 @@ | |||
1 | if (NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt") | ||
2 | message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_BINARY_DIR@/install_manifest.txt\"") | ||
3 | endif(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt") | ||
4 | |||
5 | file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files) | ||
6 | string(REGEX REPLACE "\n" ";" files "${files}") | ||
7 | foreach (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) | ||
17 | endforeach(file) | ||
18 | |||