-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakeLists.txt
69 lines (56 loc) · 1.65 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
cmake_minimum_required(VERSION 2.8.3)
project(regulated_pure_pursuit_controller)
add_compile_options(-std=c++17)
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
roscpp
cmake_modules
base_local_planner
costmap_2d
nav_core
nav_msgs
pluginlib
ddynamic_reconfigure
tf
mbf_msgs
mbf_costmap_core
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
link_directories(${catkin_LIBRARY_DIRS})
catkin_package(
INCLUDE_DIRS include
LIBRARIES regulated_pure_pursuit_controller
CATKIN_DEPENDS
pluginlib
roscpp
base_local_planner
costmap_2d
nav_core
nav_msgs
pluginlib
ddynamic_reconfigure
tf
mbf_msgs
mbf_costmap_core
)
add_library(regulated_pure_pursuit_controller
src/regulated_pure_pursuit_controller.cpp)
target_link_libraries(regulated_pure_pursuit_controller
${catkin_LIBRARIES})
add_dependencies(regulated_pure_pursuit_controller nav_msgs_gencpp)
install(TARGETS regulated_pure_pursuit_controller
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
)
install(FILES regulated_pure_pursuit_controller.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
PATTERN ".svn" EXCLUDE
)