myx-cmake/MyxCMake/modules/MyxCMakeUninstall.cmake

10 lines
309 B
CMake

include_guard(GLOBAL)
if(NOT TARGET uninstall)
configure_file("${CMAKE_CURRENT_LIST_DIR}/MyxCMakeUninstall.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()