diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-10 13:24:15 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-10 15:05:49 +0200 |
commit | ac8af8452706aa0d5244adb34efcec072d389070 (patch) | |
tree | 55d0b857127d06ecb7578d5d80e78d4c4113659f /CMakeLists.txt | |
parent | a17e7721d247f41922e95f08e7e8e7a65ce06b06 (diff) | |
download | curl-ac8af8452706aa0d5244adb34efcec072d389070.tar.gz |
cmake: move cmake_uninstall.cmake to CMake/
Closes #1756
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0caf3dc1d..d9b9c42cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1341,11 +1341,11 @@ endif() if(NOT TARGET uninstall) configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake + ${CMAKE_CURRENT_SOURCE_DIR}/CMake/cmake_uninstall.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/CMake/cmake_uninstall.cmake IMMEDIATE @ONLY) add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P - ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) + ${CMAKE_CURRENT_BINARY_DIR}/CMake/cmake_uninstall.cmake) endif() |