11 lines
342 B
CMake
11 lines
342 B
CMake
|
|
ADD_EXECUTABLE(calibration main.cpp)
|
|
TARGET_LINK_LIBRARIES(calibration rtabmap_gui)
|
|
|
|
SET_TARGET_PROPERTIES( calibration
|
|
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-calibration)
|
|
|
|
INSTALL(TARGETS calibration
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT runtime
|
|
BUNDLE DESTINATION "${CMAKE_BUNDLE_LOCATION}" COMPONENT runtime)
|