CMake Nightly Date Stamp
[kiteware-cmake.git] / cmake_uninstall.cmake.in
blob9e61b00c7454ab294be7b4f0a80ca3292c0a558b
1 if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
2   message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
3 endif()
5 file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
6 string(REPLACE "\n" ";" files "${files}")
7 foreach(file ${files})
8   message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
9   if(EXISTS "$ENV{DESTDIR}${file}")
10     execute_process(
11       COMMAND "@CMAKE_COMMAND@" -E rm -f "$ENV{DESTDIR}${file}"
12       OUTPUT_VARIABLE rm_out
13       RESULT_VARIABLE rm_retval
14       )
15     if("${rm_retval}" STREQUAL 0)
16     else()
17       message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
18     endif()
19   else()
20     message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
21   endif()
22 endforeach()