diff options
author | jasjuang <jasjuang@gmail.com> | 2017-07-10 16:17:15 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-07-30 01:56:14 +0200 |
commit | 27e2a4733c3321fb0b1a127360e8e96bc3d4ae53 (patch) | |
tree | 0741d5a243d6625725c4c271e9aa438e705b3c90 /CMakeLists.txt | |
parent | e88f133298ce1dcfaeabf40e9f292610f5686e94 (diff) | |
download | curl-27e2a4733c3321fb0b1a127360e8e96bc3d4ae53.tar.gz |
cmake: support make uninstall
Closes #1674
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
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() |