diff options
author | Nikias Bassen | 2009-08-25 03:05:51 +0200 |
---|---|---|
committer | Nikias Bassen | 2009-08-25 03:05:51 +0200 |
commit | 10f1ae70bff65fd3e65718b54a1425035e86002c (patch) | |
tree | a6dc464a0266a00a32c780df22639a2a55b4335a /Modules/cmake_uninstall.cmake.in | |
parent | ec63619f611c7246247485ae3d27818aa2aa1dbd (diff) | |
download | usbmuxd-10f1ae70bff65fd3e65718b54a1425035e86002c.tar.gz usbmuxd-10f1ae70bff65fd3e65718b54a1425035e86002c.tar.bz2 |
Add uninstall target.
Diffstat (limited to 'Modules/cmake_uninstall.cmake.in')
-rw-r--r-- | Modules/cmake_uninstall.cmake.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Modules/cmake_uninstall.cmake.in b/Modules/cmake_uninstall.cmake.in new file mode 100644 index 0000000..4bfb0bf --- /dev/null +++ b/Modules/cmake_uninstall.cmake.in @@ -0,0 +1,21 @@ +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 \"$ENV{DESTDIR}${file}\"") + IF(EXISTS "$ENV{DESTDIR}${file}") + EXEC_PROGRAM( + "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" + OUTPUT_VARIABLE rm_out + RETURN_VALUE rm_retval + ) + IF(NOT "${rm_retval}" STREQUAL 0) + MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") + ENDIF(NOT "${rm_retval}" STREQUAL 0) + ELSE(EXISTS "$ENV{DESTDIR}${file}") + MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") + ENDIF(EXISTS "$ENV{DESTDIR}${file}") +ENDFOREACH(file) |