https://github.com/Kitware/CMake
Revision 44d327ffd19d6cfe984a426aa4ba71fe65e66e77 authored by Brad King on 20 May 2014, 15:45:56 UTC, committed by CMake Topic Stage on 20 May 2014, 15:45:56 UTC
0c7f84ca KWSys Process: Workaround child kill trouble on Cygwin
e604209c KWSys SystemTools: Port cygwin path conversion to modern API

2 parent s 2d5e3d2 + 0c7f84c
Raw File
Tip revision: 44d327ffd19d6cfe984a426aa4ba71fe65e66e77 authored by Brad King on 20 May 2014, 15:45:56 UTC
Merge topic 'backport-kwsys-cygwin-fixes'
Tip revision: 44d327f
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 remove \"$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