1if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
2    message(FATAL_ERROR "Cannot find install manifest: '@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt'")
3endif()
4
5file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
6string(REGEX REPLACE "\n" ";" files "${files}")
7foreach(file ${files})
8    message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
9    if(EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}")
10        exec_program("@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
11                     OUTPUT_VARIABLE rm_out
12                     RETURN_VALUE rm_retval)
13        if(NOT "${rm_retval}" STREQUAL 0)
14            message(FATAL_ERROR "Problem when removing '$ENV{DESTDIR}${file}'")
15        endif(NOT "${rm_retval}" STREQUAL 0)
16    else()
17        message(STATUS "File '$ENV{DESTDIR}${file}' does not exist.")
18    endif()
19endforeach(file)
20
21if(EXISTS "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
22    file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
23endif()
24