mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
* Config: Using cmake targets * fixed RTABMAP_DEPRECATED build error * fixed melodic build * cleanup * Fixed qhull exported library error * Update svg depend private * removed g2o from public interface * Fixed Windows with external project * removed some required dep * Fixed nsis error (also fixed unspecified components) * updated workflow rules
10 lines
341 B
CMake
10 lines
341 B
CMake
|
|
ADD_EXECUTABLE(rgbd_camera main.cpp)
|
|
TARGET_LINK_LIBRARIES(rgbd_camera rtabmap_gui)
|
|
|
|
SET_TARGET_PROPERTIES( rgbd_camera
|
|
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-rgbd_camera)
|
|
|
|
INSTALL(TARGETS rgbd_camera
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT runtime
|
|
BUNDLE DESTINATION "${CMAKE_BUNDLE_LOCATION}" COMPONENT runtime) |