mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
and the cmake directory into a new directory ``contrib/cmake`` that mirrors the directory structure of the root. This is a comprimise between me and Christoph Wintersteiger that was suggested by Arie Gurfinkel that allows the CMake build system to live in the Z3 repository but not impact the Z3 developers that want to avoid the CMake build system. The build system will not work in its new location and a bootstrap script will soon be provided that allows a developer to copy the files back to their correct location.
24 lines
942 B
CMake
24 lines
942 B
CMake
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 "\n" ";" files "${files}")
|
|
foreach(file ${files})
|
|
set(_full_file_path "$ENV{DESTDIR}${file}")
|
|
message(STATUS "Uninstalling ${_full_file_path}")
|
|
if(IS_SYMLINK "${_full_file_path}" OR EXISTS "${_full_file_path}")
|
|
# We could use ``file(REMOVE ...)`` here but then we wouldn't
|
|
# know if the removal failed.
|
|
execute_process(COMMAND
|
|
"@CMAKE_COMMAND@" "-E" "remove" "${_full_file_path}"
|
|
RESULT_VARIABLE rm_retval
|
|
)
|
|
if(NOT "${rm_retval}" STREQUAL 0)
|
|
message(FATAL_ERROR "Problem when removing \"${_full_file_path}\"")
|
|
endif()
|
|
else()
|
|
message(STATUS "File \"${_full_file_path}\" does not exist.")
|
|
endif()
|
|
endforeach()
|