-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
29 lines (21 loc) · 982 Bytes
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
cmake_minimum_required(VERSION 2.8.3)
project(pl_slam_ros)
## Find catkin and any catkin packages
#find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs genmsg)
find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs cv_bridge)
## Declare ROS messages and services
#add_message_files(FILES Num.msg)
#add_service_files(FILES AddTwoInts.srv)
## Generate added messages and services
#generate_messages(DEPENDENCIES std_msgs)
## Declare a catkin package
catkin_package()
include_directories(include ${catkin_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR}/common/include/)
#set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/common/lib/)
#message("LIBRARY_OUTPUT_PATH = ${LIBRARY_OUTPUT_PATH}!!!!!!!!!!!!")
#aux_source_directory(${PROJECT_SOURCE_DIR}/common/src/ commonsources)
#add_library(common SHARED ${commonsources})
#target_link_libraries( common ${catkin_LIBRARIES} ${OpenCV_LIBS} )
#list(APPEND LINK_LIBS libcommon.so)
add_subdirectory(stvo-pl)
add_subdirectory(pl-slam)