mirror of
https://github.com/DaveGamble/cJSON.git
synced 2026-07-25 12:24:23 +00:00
a3f3d6c784
The README stated that CMake 2.8.5+ was required, but CMakeLists.txt requires CMake 3.5+. This inconsistency caused confusion for users with CMake versions between 2.8.5 and 3.5. Also updated library_config/uninstall.cmake to match for consistency. Fixes #988
28 lines
726 B
CMake
28 lines
726 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
set(MANIFEST "${CMAKE_CURRENT_BINARY_DIR}/install_manifest.txt")
|
|
|
|
if(NOT EXISTS ${MANIFEST})
|
|
message(FATAL_ERROR "Cannot find install mainfest: ${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 result
|
|
OUTPUT_QUIET
|
|
ERROR_VARIABLE stderr
|
|
ERROR_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
if(NOT ${result} EQUAL 0)
|
|
message(FATAL_ERROR "${stderr}")
|
|
endif()
|
|
else()
|
|
message(STATUS "Does-not-exist: ${file}")
|
|
endif()
|
|
endforeach(file)
|