cmake_uninstall.cmake 1.2 KB

12345678910111213141516171819202122232425262728
  1. # -----------------------------------------------
  2. # File that provides "make uninstall" target
  3. # We use the file 'install_manifest.txt'
  4. #
  5. # Details: https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
  6. # -----------------------------------------------
  7. if(NOT EXISTS "/home/zx/env/opencv-4.8.0/build/install_manifest.txt")
  8. message(FATAL_ERROR "Cannot find install manifest: \"/home/zx/env/opencv-4.8.0/build/install_manifest.txt\"")
  9. endif()
  10. file(READ "/home/zx/env/opencv-4.8.0/build/install_manifest.txt" files)
  11. string(REGEX REPLACE "\n" ";" files "${files}")
  12. foreach(file ${files})
  13. message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
  14. if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  15. exec_program(
  16. "/usr/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
  17. OUTPUT_VARIABLE rm_out
  18. RETURN_VALUE rm_retval
  19. )
  20. if(NOT "${rm_retval}" STREQUAL 0)
  21. message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
  22. endif()
  23. else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  24. message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
  25. endif()
  26. endforeach()