forked from AndrejOrsula/space_robotics_bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
30 lines (25 loc) · 797 Bytes
/
CMakeLists.txt
File metadata and controls
30 lines (25 loc) · 797 Bytes
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
cmake_minimum_required(VERSION 3.5)
project(space_robotics_bench)
## Find dependencies
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
## Install Python package
ament_python_install_package(space_robotics_bench)
## Install Python scripts
set(SCRIPTS_DIR scripts)
install(PROGRAMS
${SCRIPTS_DIR}/utils/clean_procgen_cache.py
${SCRIPTS_DIR}/utils/tensorboard.bash
${SCRIPTS_DIR}/utils/update_assets.bash
${SCRIPTS_DIR}/gui.bash
${SCRIPTS_DIR}/list_envs.py
${SCRIPTS_DIR}/random_agent.py
${SCRIPTS_DIR}/ros2.py
${SCRIPTS_DIR}/teleop.py
${SCRIPTS_DIR}/zero_agent.py
DESTINATION lib/${PROJECT_NAME}
)
## Install directories
install(DIRECTORY config launch DESTINATION share/${PROJECT_NAME})
## Setup the project
ament_package()