|
| 1 | +################################################################################ |
| 2 | +# CMake |
| 3 | +################################################################################ |
1 | 4 | cmake_minimum_required(VERSION 2.8.3) |
2 | 5 | project(turtlebot3_follow_filter) |
3 | 6 |
|
4 | | -find_package(catkin REQUIRED COMPONENTS |
5 | | - roscpp |
6 | | - std_msgs |
7 | | - laser_filters |
8 | | -) |
| 7 | +################################################################################ |
| 8 | +# Packages |
| 9 | +################################################################################ |
| 10 | +find_package(catkin REQUIRED) |
9 | 11 |
|
| 12 | +################################################################################ |
| 13 | +# Python scripts and modules |
| 14 | +################################################################################ |
10 | 15 |
|
11 | | -catkin_package( |
12 | | -# INCLUDE_DIRS include |
13 | | - LIBRARIES turtlebot3_follow_filter |
14 | | - CATKIN_DEPENDS roscpp std_msgs laser_filters |
15 | | -# DEPENDS system_lib |
16 | | -) |
| 16 | +################################################################################ |
| 17 | +# Declare ROS messages, services and actions |
| 18 | +################################################################################ |
| 19 | + |
| 20 | +################################################################################ |
| 21 | +# Declare ROS dynamic reconfigure parameters |
| 22 | +################################################################################ |
17 | 23 |
|
18 | | -include_directories( |
19 | | - ${catkin_INCLUDE_DIRS} |
| 24 | +################################################################################ |
| 25 | +# Catkin specific configuration |
| 26 | +################################################################################ |
| 27 | +catkin_package() |
| 28 | + |
| 29 | +################################################################################ |
| 30 | +# Build |
| 31 | +################################################################################ |
| 32 | + |
| 33 | +################################################################################ |
| 34 | +# Install |
| 35 | +################################################################################ |
| 36 | +install(DIRECTORY filter launch |
| 37 | + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} |
20 | 38 | ) |
| 39 | + |
| 40 | +################################################################################ |
| 41 | +# Test |
| 42 | +################################################################################ |
0 commit comments