Sha256: f796cc0bbd5ee869733c67080cf957cb82c996e9e745ff8fbee35147d3df0c5c

Contents?: true

Size: 675 Bytes

Versions: 8

Compression:

Stored size: 675 Bytes

Contents

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(REGEX REPLACE "[\r\n]" ";" files "${files}")

foreach(file ${files})
    message(STATUS "Uninstalling ${file}")
    if(EXISTS "${file}")
        file(REMOVE ${file})
        if (EXISTS "${file}")
            message(FATAL_ERROR "Problem when removing ${file}, please check your permissions")
        endif()
    else()
        message(STATUS "File ${file} does not exist.")
    endif()
endforeach()

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
curses-1.4.7 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.5 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.4 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.4.beta.1 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.3 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.2 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.1 vendor/PDCurses/cmake/make_uninstall.cmake
curses-1.4.0 vendor/PDCurses/cmake/make_uninstall.cmake