-
Notifications
You must be signed in to change notification settings - Fork 19
/
CMakeLists.txt
91 lines (74 loc) · 1.77 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cmake_minimum_required(VERSION 3.0.2)
project(ftc_local_planner)
find_package(catkin REQUIRED
COMPONENTS
costmap_2d
dynamic_reconfigure
nav_core
nav_msgs
pluginlib
roscpp
tf
tf2
tf2_geometry_msgs
tf2_ros
geometry_msgs
std_msgs
message_generation
)
find_package(Eigen3 REQUIRED)
include_directories(
include
${catkin_INCLUDE_DIRS}
${Eigen3_INCLUDE_DIRS}
)
add_definitions(${Eigen3_DEFINITIONS})
# dynamic reconfigure
generate_dynamic_reconfigure_options(
cfg/FTCPlanner.cfg
)
## Generate services in the 'srv' folder
add_service_files(
FILES
PlannerGetProgress.srv
)
add_message_files(
FILES
PID.msg
)
generate_messages(
DEPENDENCIES
std_msgs
)
catkin_package(
INCLUDE_DIRS include
LIBRARIES ftc_local_planner
CATKIN_DEPENDS
dynamic_reconfigure
pluginlib
roscpp
tf
tf2_geometry_msgs
tf2_ros
)
catkin_package(
CATKIN_DEPENDS message_runtime
)
add_library(ftc_local_planner
src/ftc_planner.cpp
src/recovery_behaviors.cpp)
target_link_libraries(ftc_local_planner ${catkin_LIBRARIES})
add_dependencies(ftc_local_planner ${catkin_EXPORTED_TARGETS} ${${PROJECT_NAME}_EXPORTED_TARGETS})
add_dependencies(ftc_local_planner ftc_local_planner_gencfg)
add_dependencies(ftc_local_planner ftc_local_planner_generate_messages_cpp)
install(TARGETS ftc_local_planner
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
)
install(FILES blp_plugin.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
PATTERN ".svn" EXCLUDE
)