49 строки
1.7 KiB
CMake
49 строки
1.7 KiB
CMake
#################################################################################
|
|
#
|
|
# This file is a part of CMake build configuration of GEOS library
|
|
#
|
|
# Defines commands used by make uninstall target of CMake build configuration.
|
|
#
|
|
# Author: Credit to the CMake mailing list archives for providing this solution.
|
|
# Modifications: Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
#################################################################################
|
|
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}")
|
|
|
|
set(GEOS_INCLUDE_DIR)
|
|
foreach(file ${files})
|
|
|
|
if(${file} MATCHES "geom.h")
|
|
get_filename_component(GEOS_INCLUDE_DIR ${file} PATH)
|
|
endif()
|
|
|
|
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
|
|
if(NOT EXISTS "$ENV{DESTDIR}${file}")
|
|
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
|
message(STATUS "\tTrying to execute remove command anyway.")
|
|
endif()
|
|
|
|
exec_program("@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
|
OUTPUT_VARIABLE rm_out
|
|
RETURN_VALUE rm_retval)
|
|
if(NOT "${rm_retval}" STREQUAL 0)
|
|
message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
|
endif()
|
|
endforeach()
|
|
|
|
message(STATUS "Deleting ${GEOS_INCLUDE_DIR} directory")
|
|
exec_program("@CMAKE_COMMAND@"
|
|
ARGS "-E remove_directory \"${GEOS_INCLUDE_DIR}\""
|
|
OUTPUT_VARIABLE rm_out
|
|
RETURN_VALUE rm_retval)
|
|
if(NOT "${rm_retval}" STREQUAL 0)
|
|
message(FATAL_ERROR "Problem when removing \"${GEOS_INCLUDE_DIR}\"")
|
|
endif()
|