From 07d3d6508a45da3b5649228c7bb0bea5c2a194e5 Mon Sep 17 00:00:00 2001 From: James Turner Date: Tue, 28 Dec 2010 13:38:05 +0000 Subject: [PATCH] Uninstall support, pinched from OSG. --- CMakeLists.txt | 11 +++++++++++ CMakeModules/cmake_uninstall.cmake.in | 22 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 CMakeModules/cmake_uninstall.cmake.in diff --git a/CMakeLists.txt b/CMakeLists.txt index 6db321af..974671c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,3 +107,14 @@ configure_file ( install (FILES ${PROJECT_BINARY_DIR}/simgear/simgear_config.h DESTINATION include/simgear/) add_subdirectory(simgear) +#----------------------------------------------------------------------------- +### uninstall target +#----------------------------------------------------------------------------- +CONFIGURE_FILE( + "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY) +ADD_CUSTOM_TARGET(uninstall + "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") + + diff --git a/CMakeModules/cmake_uninstall.cmake.in b/CMakeModules/cmake_uninstall.cmake.in new file mode 100644 index 00000000..3b6a9d03 --- /dev/null +++ b/CMakeModules/cmake_uninstall.cmake.in @@ -0,0 +1,22 @@ +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}) + MESSAGE(STATUS "Uninstalling \"${file}\"") + IF(EXISTS "${file}") + EXEC_PROGRAM( + "@CMAKE_COMMAND@" ARGS "-E remove \"${file}\"" + OUTPUT_VARIABLE rm_out + RETURN_VALUE rm_retval + ) + IF(NOT "${rm_retval}" STREQUAL 0) + MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"") + ENDIF() + ELSE() + MESSAGE(STATUS "File \"${file}\" does not exist.") + ENDIF() +ENDFOREACH() -- 2.39.5