17 lines
703 B
CMake
17 lines
703 B
CMake
# ----------------------------------------------------------------------------
|
|
# Uninstall target, for "make uninstall"
|
|
# ----------------------------------------------------------------------------
|
|
configure_file(
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
IMMEDIATE @ONLY)
|
|
|
|
if (NOT TARGET uninstall) # avoid duplicating this target
|
|
add_custom_target(uninstall
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|
|
else()
|
|
add_custom_target(uninstall_gtsam
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|
|
add_dependencies(uninstall uninstall_gtsam)
|
|
endif()
|