summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-11 02:37:26 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-11 02:37:26 +0000
commit10e337150e818a452d2fcc9ba2bdb1040c51da94 (patch)
tree720d8cfe3bc253f67bf41a31251141aebdfc3acd
parentceea23677c61f20759ae986bd77b0d5c4d673edb (diff)
downloadkbfx-10e33715.tar.gz
kbfx-10e33715.zip
Fixed CMake
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1101833 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--cmakemodules/cmake_uninstall.cmake.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/cmakemodules/cmake_uninstall.cmake.in b/cmakemodules/cmake_uninstall.cmake.in
new file mode 100644
index 0000000..d00d315
--- /dev/null
+++ b/cmakemodules/cmake_uninstall.cmake.in
@@ -0,0 +1,26 @@
+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(NOT EXISTS "${file}")
+ MESSAGE(FATAL_ERROR "File \"${file}\" does not exists.")
+ ENDIF(NOT EXISTS "${file}")
+ EXEC_PROGRAM("@CMAKE_COMMAND@" ARGS "-E remove \"${file}\""
+ OUTPUT_VARIABLE rm_out
+ RETURN_VARIABLE rm_retval)
+ IF("${rm_retval}" GREATER 0)
+ MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
+ ENDIF("${rm_retval}" GREATER 0)
+ENDFOREACH(file)
+
+IF(EXISTS "@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")
+ INCLUDE("@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")
+ENDIF(EXISTS "@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")
+
+IF(EXISTS "@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")
+ FILE( REMOVE "@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")
+ENDIF(EXISTS "@CMAKE_CURRENT_BINARY_DIR@/uninstall_plus.cmake")