diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-08 12:22:14 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-08 12:22:14 -0700 |
commit | 41e9ededc9ca0d33c67dd7f2051278d375386930 (patch) | |
tree | ae0e280c045bc0d848e355fd58f55ec01858dfbd /host/cmake/cmake_uninstall.cmake.in | |
parent | 17fabccfe4be79f3a5a0a3d7ab14ea72a791ecd9 (diff) | |
download | uhd-41e9ededc9ca0d33c67dd7f2051278d375386930.tar.gz uhd-41e9ededc9ca0d33c67dd7f2051278d375386930.tar.bz2 uhd-41e9ededc9ca0d33c67dd7f2051278d375386930.zip |
uhd: moved modules and some other files into cmake subdir
Diffstat (limited to 'host/cmake/cmake_uninstall.cmake.in')
-rw-r--r-- | host/cmake/cmake_uninstall.cmake.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/host/cmake/cmake_uninstall.cmake.in b/host/cmake/cmake_uninstall.cmake.in new file mode 100644 index 000000000..6031a6ca9 --- /dev/null +++ b/host/cmake/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) |