-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
71 lines (59 loc) · 1.06 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
cmake_minimum_required(VERSION 2.8.3)
project(box_finder)
find_package(catkin REQUIRED
COMPONENTS
geometry_msgs
roscpp
nav_msgs
tf
actionlib
move_base_msgs
message_generation
)
find_package(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
add_service_files(
FILES
GetGoal.srv
)
generate_messages(
DEPENDENCIES
geometry_msgs
)
catkin_package()
include_directories(
include
${catkin_INCLUDE_DIRS}
)
add_executable(
move_to_table
src/move_to_table.cpp
src/MoveToTableNode.cpp
src/RobotClass.cpp
src/TrueAngle.cpp
)
target_link_libraries(
move_to_table
${catkin_LIBRARIES}
${OpenCV_LIBRARIES}
)
add_executable(
automapping
src/automapping.cpp
src/AutomappingNode.cpp
src/RobotClass.cpp
src/TrueAngle.cpp
)
target_link_libraries(
automapping
${catkin_LIBRARIES}
)
add_executable(
exploration_server
src/exploration.cpp
src/Explorer.cpp
)
target_link_libraries(
exploration_server
${catkin_LIBRARIES}
)