"Fossies" - the Fresh Open Source Software Archive

Member "evolution-mapi-3.46.1/cmake/cmake_uninstall.cmake.in" (2 Dec 2022, 1035 Bytes) of package /linux/misc/evolution-mapi-3.46.1.tar.xz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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