Warning, /frameworks/kdelibs4support/cmake/modules/kde4_cmake_uninstall.cmake.in is written in an unsupported language. File is not indexed.

0001 IF(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
0002   MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_BINARY_DIR@/install_manifest.txt\"")
0003 ENDIF(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
0004 
0005 FILE(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
0006 STRING(REGEX REPLACE "\n" ";" files "${files}")
0007 FOREACH(file ${files})
0008   MESSAGE(STATUS "Uninstalling \"${file}\"")
0009   IF(EXISTS "${file}")
0010     EXEC_PROGRAM(
0011       "@CMAKE_COMMAND@" ARGS "-E remove \"${file}\""
0012       OUTPUT_VARIABLE rm_out
0013       RETURN_VALUE rm_retval
0014       )
0015     IF("${rm_retval}" STREQUAL 0)
0016     ELSE("${rm_retval}" STREQUAL 0)
0017       MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
0018     ENDIF("${rm_retval}" STREQUAL 0)
0019   ELSE(EXISTS "${file}")
0020     MESSAGE(STATUS "File \"${file}\" does not exist.")
0021   ENDIF(EXISTS "${file}")
0022 ENDFOREACH(file)