diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-13 18:15:47 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-13 18:15:47 -0700 |
commit | 3f1d313c9ffd30c70c609748696b746633e47a8a (patch) | |
tree | 59017c35546eaa6387a955f61a52937962ea5d71 /host/config/cmake_uninstall.cmake.in | |
parent | a4b1c4485ac6394c3d67d11d844fc4cff56307d8 (diff) | |
download | uhd-3f1d313c9ffd30c70c609748696b746633e47a8a.tar.gz uhd-3f1d313c9ffd30c70c609748696b746633e47a8a.tar.bz2 uhd-3f1d313c9ffd30c70c609748696b746633e47a8a.zip |
uhd: moved cpack stuff into config dir (work on cpack)
Diffstat (limited to 'host/config/cmake_uninstall.cmake.in')
-rw-r--r-- | host/config/cmake_uninstall.cmake.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/host/config/cmake_uninstall.cmake.in b/host/config/cmake_uninstall.cmake.in new file mode 100644 index 000000000..6031a6ca9 --- /dev/null +++ b/host/config/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) |