-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
29 lines (24 loc) · 1.24 KB
/
CMakeLists.txt
File metadata and controls
29 lines (24 loc) · 1.24 KB
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
################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 3.5)
project(aws_robomaker_small_warehouse_world)
################################################################################
# Find ament packages and libraries for ament and system dependencies
################################################################################
find_package(ament_cmake REQUIRED)
find_package(ros_gz_sim REQUIRED)
################################################################################
# Install
################################################################################
install(
DIRECTORY launch models worlds maps rviz
DESTINATION share/${PROJECT_NAME}
)
ament_environment_hooks("${CMAKE_CURRENT_SOURCE_DIR}/env-hooks/aws_robomaker_small_warehouse_world.dsv.in")
ament_export_dependencies(ament_cmake)
ament_export_dependencies(ros_gz_sim)
################################################################################
# Macro for ament package
################################################################################
ament_package()