File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -194,3 +194,14 @@ if (YAML_CPP_FORMAT_SOURCE AND YAML_CPP_CLANG_FORMAT_EXE)
194194 COMMENT "Running clang-format"
195195 VERBATIM )
196196endif ()
197+
198+ # uninstall target
199+ if (NOT TARGET uninstall)
200+ configure_file (
201+ "${CMAKE_CURRENT_SOURCE_DIR} /cmake_uninstall.cmake.in"
202+ "${CMAKE_CURRENT_BINARY_DIR} /cmake_uninstall.cmake"
203+ IMMEDIATE @ONLY)
204+
205+ add_custom_target (uninstall
206+ COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR} /cmake_uninstall.cmake)
207+ endif ()
Original file line number Diff line number Diff line change 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+ if (IS_SYMLINK "$ENV{DESTDIR}${file} " OR EXISTS "$ENV{DESTDIR}${file} " )
10+ exec_program (
11+ "@CMAKE_COMMAND@" ARGS "-E remove \" $ENV{DESTDIR}${file} \" "
12+ OUTPUT_VARIABLE rm_out
13+ RETURN_VALUE rm_retval
14+ )
15+ if (NOT "${rm_retval} " STREQUAL 0)
16+ message (FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file} " )
17+ endif ()
18+ else (IS_SYMLINK "$ENV{DESTDIR}${file} " OR EXISTS "$ENV{DESTDIR}${file} " )
19+ message (STATUS "File $ENV{DESTDIR}${file} does not exist." )
20+ endif ()
21+ endforeach ()
You can’t perform that action at this time.
0 commit comments