This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
CMakeLists.txt
66 lines (56 loc) · 1.59 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
cmake_minimum_required(VERSION 2.8.3)
project(neo_local_planner)
set(CMAKE_CXX_STANDARD 11)
## By default build with code optimization and no debug info
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release"
CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel."
FORCE)
endif(NOT CMAKE_BUILD_TYPE)
find_package(catkin REQUIRED
COMPONENTS
base_local_planner
cmake_modules
costmap_2d
dynamic_reconfigure
nav_core
nav_msgs
pluginlib
roscpp
tf2_ros
tf2_sensor_msgs
tf2_geometry_msgs
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
## dynamic reconfigure
#generate_dynamic_reconfigure_options(
# cfg/NeoPlanner.cfg
#)
catkin_package(
INCLUDE_DIRS include
LIBRARIES neo_local_planner
CATKIN_DEPENDS
dynamic_reconfigure
nav_msgs
pluginlib
roscpp
tf2_ros
tf2_sensor_msgs
tf2_geometry_msgs
)
add_library(neo_local_planner src/NeoLocalPlanner.cpp)
add_dependencies(neo_local_planner ${catkin_EXPORTED_TARGETS})
target_link_libraries(neo_local_planner ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_LIBRARIES})
install(TARGETS neo_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/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)