2020-12-30 12:35:06 +00:00
|
|
|
# GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2018-04-29 10:02:40 +00:00
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
2020-12-30 12:35:06 +00:00
|
|
|
# SPDX-FileCopyrightText: 2011-2020 C. Fernandez-Prades cfernandez(at)cttc.es
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2018-04-29 10:02:40 +00:00
|
|
|
|
2014-11-04 00:10:58 +00:00
|
|
|
if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
2019-11-29 12:02:02 +00:00
|
|
|
message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
|
2018-12-01 19:11:17 +00:00
|
|
|
endif()
|
2013-07-10 21:07:43 +00:00
|
|
|
|
|
|
|
file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
|
|
|
|
string(REGEX REPLACE "\n" ";" files "${files}")
|
2014-11-04 00:10:58 +00:00
|
|
|
foreach(file ${files})
|
2019-11-29 12:02:02 +00:00
|
|
|
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
|
2020-02-28 19:57:28 +00:00
|
|
|
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
|
|
|
|
if(CMAKE_VERSION VERSION_LESS 3.17)
|
|
|
|
execute_process(
|
|
|
|
COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
|
|
|
|
OUTPUT_VARIABLE rm_out
|
|
|
|
RESULT_VARIABLE rm_retval
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
execute_process(
|
|
|
|
COMMAND @CMAKE_COMMAND@ -E rm "$ENV{DESTDIR}${file}"
|
|
|
|
OUTPUT_VARIABLE rm_out
|
|
|
|
RESULT_VARIABLE rm_retval
|
|
|
|
)
|
2019-11-29 12:02:02 +00:00
|
|
|
endif()
|
|
|
|
if(NOT "${rm_retval}" STREQUAL 0)
|
|
|
|
message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
2018-12-01 19:11:17 +00:00
|
|
|
endif()
|
2019-11-30 19:30:22 +00:00
|
|
|
endforeach()
|