mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 08:39:57 +00:00
`contrib/cmake/bootstrap.py` script no longer needs to be executed. The previous location of the CMake files was a compromise proposed by @agurfinkel in #461. While this has served us well (allowing progress to be made) over time limitations of this approach have appeared. The main problem is that doing many git operations (e.g. pull, rebase) means the CMake files don't get updated unless the user remembers to run the script. This can lead to broken and confusing build system behaviour. This commit only does the file moving and necessary changes to `.gitignore`. Other changes will be done in subsequent commits.
25 lines
942 B
CMake
25 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()
|