summaryrefslogtreecommitdiffstats
path: root/host/cmake_uninstall.cmake.in
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-12-27 16:57:09 -0800
committerJosh Blum <josh@joshknows.com>2010-12-27 16:57:09 -0800
commit5c08896e6c4124de69f43f0765468dc4d517920b (patch)
tree47ef644eadac0e9271eb26e4e222035461f6bfae /host/cmake_uninstall.cmake.in
parentbf8677c9a96c3ed7fae48a57759b9f4742cd7593 (diff)
parent7d3842dbd01175dc04cbd77e852b30af3ab5ac35 (diff)
downloaduhd-5c08896e6c4124de69f43f0765468dc4d517920b.tar.gz
uhd-5c08896e6c4124de69f43f0765468dc4d517920b.tar.bz2
uhd-5c08896e6c4124de69f43f0765468dc4d517920b.zip
Merge branch 'uhd_master' into uhd_next
Diffstat (limited to 'host/cmake_uninstall.cmake.in')
-rw-r--r--host/cmake_uninstall.cmake.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/host/cmake_uninstall.cmake.in b/host/cmake_uninstall.cmake.in
new file mode 100644
index 000000000..6031a6ca9
--- /dev/null
+++ b/host/cmake_uninstall.cmake.in
@@ -0,0 +1,23 @@
+# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
+
+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)