diff options
author | Michele Calgaro <[email protected]> | 2020-06-26 17:28:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-06-26 17:29:57 +0900 |
commit | 12180eff3bd5440220a773980d762406b4e1ff5c (patch) | |
tree | 302cd0abe4d9d511e69e0d8e45ad17235cf8b427 /cmake_admin/cmake_uninstall.cmake.in | |
parent | e9157b216b504f2ea2db60b7c11055070f07bbc5 (diff) | |
download | rosegarden-12180eff3bd5440220a773980d762406b4e1ff5c.tar.gz rosegarden-12180eff3bd5440220a773980d762406b4e1ff5c.zip |
Removed unused code.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 5676a065c98e15803510bc238f853e991d7325cd)
Diffstat (limited to 'cmake_admin/cmake_uninstall.cmake.in')
-rw-r--r-- | cmake_admin/cmake_uninstall.cmake.in | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cmake_admin/cmake_uninstall.cmake.in b/cmake_admin/cmake_uninstall.cmake.in deleted file mode 100644 index c8ff0b7..0000000 --- a/cmake_admin/cmake_uninstall.cmake.in +++ /dev/null @@ -1,22 +0,0 @@ -IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") -ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - -FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) -STRING(REGEX REPLACE "\n" ";" files "${files}") -FOREACH(file ${files}) - MESSAGE(STATUS "Uninstalling \"${file}\"") - IF(EXISTS "${file}") - EXEC_PROGRAM( - "@CMAKE_COMMAND@" ARGS "-E remove \"${file}\"" - OUTPUT_VARIABLE rm_out - RETURN_VALUE rm_retval - ) - IF("${rm_retval}" STREQUAL 0) - ELSE("${rm_retval}" STREQUAL 0) - MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"") - ENDIF("${rm_retval}" STREQUAL 0) - ELSE(EXISTS "${file}") - MESSAGE(STATUS "File \"${file}\" does not exist.") - ENDIF(EXISTS "${file}") -ENDFOREACH(file) |