https://github.com/Kitware/CMake
Revision a19a43a930a577edb7f2aa2fc11e28faf7134d9c authored by Brad King on 23 December 2014, 13:53:48 UTC, committed by CMake Topic Stage on 23 December 2014, 13:53:48 UTC
9c4984b4 ctest_coverage: Fix error message to report the file name

2 parent s 400af30 + 9c4984b
Raw File
Tip revision: a19a43a930a577edb7f2aa2fc11e28faf7134d9c authored by Brad King on 23 December 2014, 13:53:48 UTC
Merge topic 'ctest-coverage-extra-line-error'
Tip revision: a19a43a
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