Files
evolution/cmake/modules/UninstallTarget.cmake
2016-10-10 14:46:59 +02:00

14 lines
364 B
CMake

# UninstallTarget.cmake
#
# Defines a custom target named 'uninstall'
if(NOT TARGET uninstall)
configure_file(
"${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
"${CMAKE_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)
add_custom_target(uninstall
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_BINARY_DIR}/cmake_uninstall.cmake)
endif(NOT TARGET uninstall)