mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-06 02:27:15 +00:00
23 lines
542 B
CMake
23 lines
542 B
CMake
|
cmake_minimum_required(VERSION 3.13)
|
||
|
set(MANIFEST "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
|
||
|
|
||
|
if(NOT EXISTS ${MANIFEST})
|
||
|
message(FATAL_ERROR "Cannot find install manifest: '${MANIFEST}'")
|
||
|
endif()
|
||
|
|
||
|
file(STRINGS ${MANIFEST} files)
|
||
|
foreach(file ${files})
|
||
|
if(EXISTS ${file} OR IS_SYMLINK ${file})
|
||
|
message(STATUS "Removing: ${file}")
|
||
|
|
||
|
execute_process(
|
||
|
COMMAND rm -f ${file}
|
||
|
RESULT_VARIABLE retcode
|
||
|
)
|
||
|
|
||
|
if(NOT "${retcode}" STREQUAL "0")
|
||
|
message(WARNING "Failed to remove: ${file}")
|
||
|
endif()
|
||
|
endif()
|
||
|
endforeach(file)
|