🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

18 lines
734 B

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