-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
87 lines (72 loc) · 1.8 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
cmake_minimum_required(VERSION 3.5.1)
project(rover_nav)
set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
## Find catkin macros and libraries
find_package(catkin REQUIRED COMPONENTS
roscpp
grid_map_ros
grid_map_pcl
base_local_planner
nav_core
pluginlib
filters
dynamic_reconfigure
)
###################################
## catkin specific configuration ##
###################################
## The catkin_package macro generates cmake config files for your package
## Declare things to be passed to dependent projects
## INCLUDE_DIRS: uncomment this if you package contains header files
## LIBRARIES: libraries you create in televation
# dynamic reconfigure installation stuff
generate_dynamic_reconfigure_options(
cfg/planner.cfg
)
catkin_package(
INCLUDE_DIRS include
CATKIN_DEPENDS
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
#############
## Install ##
#############
# install(DIRECTORY config doc launch rviz
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
# )
# install(PROGRAMS scripts/ground_truth_pose_publisher.py
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
# )
add_library(planner_3d src/planner_3d.cpp)
add_dependencies(
planner_3d
${${PROJECT_NAME}_EXPORTED_TARGETS}
${catkin_EXPORTED_TARGETS}
)
target_link_libraries(
planner_3d
${catkin_LIBRARIES}
)
install(
TARGETS planner_3d
DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
)
install(
DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
# PATTERN ".svn" EXCLUDE
)
install(
FILES bgp_plugin.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
# planner_tuner c++ node build
add_executable(planner_tuner src/planner_tuner.cpp)
target_link_libraries(planner_tuner
${catkin_LIBRARIES}
planner_3d
)
add_dependencies(planner_tuner ${PROJECT_NAME}_gencfg)