Add uninstall target in cmake

This commit is contained in:
dota17
2020-02-27 16:00:09 +08:00
parent 30e00cf757
commit 1160c8625c
2 changed files with 12 additions and 1 deletions

View File

@@ -335,6 +335,12 @@ else (DOXYGEN_FOUND)
message("Doxygen need to be installed to generate the doxygen documentation")
endif(DOXYGEN_FOUND)
# uninstall
add_custom_target(uninstall
COMMAND cat ${PROJECT_BINARY_DIR}/install_manifest.txt | xargs rm -rf
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
# XXX for a normal full distribution we'll need to figure out
# XXX how to build both shared and static libraries.
# Probably leverage that to build a local VALGRIND=1 library for testing too.