mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
10 lines
282 B
CMake
10 lines
282 B
CMake
|
if (NOT TARGET uninstall)
|
||
|
configure_file(
|
||
|
"${CMAKE_CURRENT_LIST_DIR}/uninstall.cmake.in"
|
||
|
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake"
|
||
|
IMMEDIATE @ONLY)
|
||
|
|
||
|
add_custom_target(uninstall
|
||
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake)
|
||
|
endif()
|