Skip to content

Commit dbda6d8

Browse files
ChillerDragonslouken
authored andcommitted
cmake: add uninstall target
1 parent e815e79 commit dbda6d8

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1078,6 +1078,13 @@ if(SDLIMAGE_INSTALL)
10781078
REVISION "${SDLIMAGE_REVISION}"
10791079
)
10801080
endif()
1081+
1082+
if(SDLIMAGE_ROOTPROJECT)
1083+
configure_file(cmake/cmake_uninstall.cmake.in cmake_uninstall.cmake IMMEDIATE @ONLY)
1084+
1085+
add_custom_target(uninstall
1086+
COMMAND ${CMAKE_COMMAND} -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
1087+
endif()
10811088
endif()
10821089

10831090
if(SDLIMAGE_SAMPLES)

cmake/cmake_uninstall.cmake.in

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
if (NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
2+
message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_BINARY_DIR@/install_manifest.txt\"")
3+
endif()
4+
5+
file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
6+
string(REGEX REPLACE "\n" ";" files "${files}")
7+
foreach(file ${files})
8+
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
9+
execute_process(
10+
COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
11+
OUTPUT_VARIABLE rm_out
12+
RESULT_VARIABLE rm_retval
13+
)
14+
if(NOT ${rm_retval} EQUAL 0)
15+
message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
16+
endif (NOT ${rm_retval} EQUAL 0)
17+
endforeach()

0 commit comments

Comments
 (0)