https://github.com/Kitware/CMake
Revision 3d94ee0e03a82e602a8ce6c2b745f29285e69fd4 authored by Marc Chevrier on 05 August 2022, 08:54:45 UTC, committed by Marc Chevrier on 22 August 2022, 14:25:53 UTC
1 parent 553da06
Raw File
Tip revision: 3d94ee0e03a82e602a8ce6c2b745f29285e69fd4 authored by Marc Chevrier on 05 August 2022, 08:54:45 UTC
cmMakefile::RaiseScope: Add support for cmValue argument
Tip revision: 3d94ee0
cmake_uninstall.cmake.in
if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
endif()

file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
string(REPLACE "\n" ";" files "${files}")
foreach(file ${files})
  message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
  if(EXISTS "$ENV{DESTDIR}${file}")
    exec_program(
      "@CMAKE_COMMAND@" ARGS "-E rm -f \"$ENV{DESTDIR}${file}\""
      OUTPUT_VARIABLE rm_out
      RETURN_VALUE rm_retval
      )
    if("${rm_retval}" STREQUAL 0)
    else()
      message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
    endif()
  else()
    message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
  endif()
endforeach()
back to top