cmake_uninstall.cmake.in 1011 B

12345678910111213141516171819202122
  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(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  4. file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
  5. string(REGEX REPLACE "\n" ";" files "${files}")
  6. list(REVERSE 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 remove "$ENV{DESTDIR}${file}"
  12. OUTPUT_VARIABLE rm_out
  13. RESULT_VARIABLE rm_retval
  14. )
  15. if(NOT ${rm_retval} EQUAL 0)
  16. message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
  17. endif (NOT ${rm_retval} EQUAL 0)
  18. else (EXISTS "$ENV{DESTDIR}${file}")
  19. message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
  20. endif (EXISTS "$ENV{DESTDIR}${file}")
  21. endforeach(file)