From 27e2a4733c3321fb0b1a127360e8e96bc3d4ae53 Mon Sep 17 00:00:00 2001 From: jasjuang Date: Mon, 10 Jul 2017 16:17:15 -0700 Subject: cmake: support make uninstall Closes #1674 --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 8646c6adc..f21d89e8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1333,3 +1333,14 @@ if(MSVC_VERSION EQUAL 1600) file(APPEND "${CURL_SLN_FILENAME}" "\n# This should be regenerated!\n") endif() endif() + +if(NOT TARGET uninstall) + configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake + IMMEDIATE @ONLY) + + add_custom_target(uninstall + COMMAND ${CMAKE_COMMAND} -P + ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) +endif() -- cgit v1.2.3