You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
761B

  1. if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  2. message(FATAL_ERROR
  3. "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
  4. endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  5. file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
  6. string(REGEX REPLACE "\n" ";" files "${files}")
  7. foreach(file ${files})
  8. message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
  9. exec_program("@CMAKE_COMMAND@"
  10. ARGS "-E remove -f \"$ENV{DESTDIR}${file}\""
  11. OUTPUT_VARIABLE rm_out
  12. RETURN_VALUE rm_retval
  13. )
  14. if(NOT "${rm_retval}" STREQUAL 0)
  15. message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
  16. endif(NOT "${rm_retval}" STREQUAL 0)
  17. endforeach(file)