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")
5 file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
6 string(REGEX REPLACE "\n" ";" files "${files}")
7 foreach (file ${files})
8 message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
10 COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
11 OUTPUT_VARIABLE rm_out
12 RESULT_VARIABLE rm_retval
14 if(NOT ${rm_retval} EQUAL 0)
15 message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
16 endif (NOT ${rm_retval} EQUAL 0)