mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
git-svn-id: http://rtabmap.googlecode.com/svn/trunk/rtabmap@1152 f169173b-cf89-36c8-b27e-44dbe73f0c83
18 lines
390 B
CMake
18 lines
390 B
CMake
SET(INCLUDE_DIRS
|
|
${PROJECT_SOURCE_DIR}/corelib/include
|
|
${OpenCV_INCLUDE_DIRS}
|
|
)
|
|
|
|
SET(LIBRARIES
|
|
${OpenCV_LIBRARIES}
|
|
)
|
|
|
|
add_definitions(${PCL_DEFINITIONS})
|
|
|
|
INCLUDE_DIRECTORIES(${INCLUDE_DIRS})
|
|
|
|
ADD_EXECUTABLE(bow_mapping main.cpp)
|
|
TARGET_LINK_LIBRARIES(bow_mapping rtabmap_core ${LIBRARIES})
|
|
|
|
SET_TARGET_PROPERTIES( bow_mapping
|
|
PROPERTIES OUTPUT_NAME ${PROJECT_PREFIX}-bow_mapping) |