blob: 7ccfcf39476a8ad9c3cb3e1e42395bd440ff40fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# 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)
|