-
Notifications
You must be signed in to change notification settings - Fork 47
/
cmake_uninstall.cmake.in
85 lines (80 loc) · 3.16 KB
/
cmake_uninstall.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Copyright (C) 2010 Olivier Stasse, JRL, CNRS, 2010
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This files comes from the CMake FAQ: http://www.cmake.org/Wiki/CMake_FAQ
IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
RETURN()
ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
MESSAGE(STATUS "catkin path: @CMAKE_INSTALL_PREFIX@/.catkin")
IF(EXISTS "@CMAKE_INSTALL_PREFIX@/.catkin" AND PACKAGE_CREATES_DOT_CATKIN)
MESSAGE(STATUS "Try to remove @CMAKE_INSTALL_PREFIX@/.catkin")
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E remove "@CMAKE_INSTALL_PREFIX@/.catkin"
RESULT_VARIABLE rm_resval
OUTPUT_VARIABLE rm_out
ERROR_VARIABLE rm_err
)
ENDIF()
IF(EXISTS "@CMAKE_CURRRENT_BINARY_DIR@/install_manifest.txt")
return()
ENDIF()
FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
STRING(REGEX REPLACE "\n" ";" files "${files}")
LIST(REMOVE_ITEM files "")
LIST(REVERSE files)
FOREACH(file ${files})
MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
IF(EXISTS "$ENV{DESTDIR}${file}")
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E remove "$ENV{DESTDIR}${file}"
RESULT_VARIABLE rm_resval
OUTPUT_VARIABLE rm_out
)
IF(NOT ${rm_resval} STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
ENDIF(NOT ${rm_resval} STREQUAL 0)
# remove .pyc if need be
IF(file MATCHES ".py$")
SET(pycfile "${file}c")
IF(EXISTS "$ENV{DESTDIR}${pycfile}")
MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${pycfile}\"")
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E remove "$ENV{DESTDIR}${pycfile}"
RESULT_VARIABLE rm_resval
OUTPUT_VARIABLE rm_out
)
IF(NOT ${rm_resval} STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${pycfile}\"")
ENDIF(NOT ${rm_resval} STREQUAL 0)
ENDIF(EXISTS "$ENV{DESTDIR}${pycfile}")
ENDIF(file MATCHES ".py$")
ELSE(EXISTS "$ENV{DESTDIR}${file}")
MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
# If file is a broken symbolic link, EXISTS returns false.
# Workaround this bug by attempting to remove the file anyway.
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E remove "$ENV{DESTDIR}${file}"
RESULT_VARIABLE rm_resval
OUTPUT_VARIABLE rm_out
ERROR_QUIET
)
ENDIF(EXISTS "$ENV{DESTDIR}${file}")
ENDFOREACH(file)
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E remove "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt"
RESULT_VARIABLE rm_resval
OUTPUT_VARIABLE rm_out
ERROR_QUIET
)