14 lines
321 B
CMake
14 lines
321 B
CMake
|
|
ADD_EXECUTABLE(export main.cpp)
|
|
|
|
TARGET_LINK_LIBRARIES(export rtabmap_core)
|
|
|
|
SET_TARGET_PROPERTIES( export
|
|
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-export)
|
|
|
|
INSTALL(TARGETS export
|
|
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT runtime
|
|
BUNDLE DESTINATION "${CMAKE_BUNDLE_LOCATION}" COMPONENT runtime)
|
|
|
|
|