forked from arshadlab/turtlebot3_multi_robot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
25 lines (17 loc) · 967 Bytes
/
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
################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 3.5)
project(jackal_multi_robot)
################################################################################
# Find ament packages and libraries for ament and system dependencies
################################################################################
find_package(ament_cmake REQUIRED)
################################################################################
# Install
################################################################################
install(DIRECTORY launch models rviz urdf worlds params
DESTINATION share/${PROJECT_NAME}/
)
ament_environment_hooks("${CMAKE_CURRENT_SOURCE_DIR}/env-hooks/multi_robot.dsv.in")
ament_package()