mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 10:00:23 +08:00
14 lines
346 B
CMake
14 lines
346 B
CMake
|
|
|
||
|
|
ADD_EXECUTABLE(reduceGraph main.cpp)
|
||
|
|
|
||
|
|
TARGET_LINK_LIBRARIES(reduceGraph rtabmap_core)
|
||
|
|
|
||
|
|
SET_TARGET_PROPERTIES( reduceGraph
|
||
|
|
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-reduceGraph)
|
||
|
|
|
||
|
|
INSTALL(TARGETS reduceGraph
|
||
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT runtime
|
||
|
|
BUNDLE DESTINATION "${CMAKE_BUNDLE_LOCATION}" COMPONENT runtime)
|
||
|
|
|
||
|
|
|