cmake_uninstall.cmake.in 952 B

1234567891011121314151617181920212223
  1. # Source: https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
  2. if(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
  3. message(FATAL_ERROR "Cannot find install manifest: @CMAKE_BINARY_DIR@/install_manifest.txt")
  4. endif()
  5. file(READ "@CMAKE_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. if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  10. exec_program(
  11. "@CMAKE_COMMAND@" ARGS
  12. "-E remove \"$ENV{DESTDIR}${file}\""
  13. OUTPUT_VARIABLE rm_out
  14. RETURN_VALUE rm_retval)
  15. if(NOT "${rm_retval}" STREQUAL 0)
  16. message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
  17. endif()
  18. else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  19. message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
  20. endif()
  21. endforeach()