Files
gazebo_ros_arm/src/arm_harverster/CMakeLists.txt
T
Marcin M 202249a9e4 Done
2026-06-17 23:30:52 +02:00

20 lines
432 B
CMake

cmake_minimum_required(VERSION 3.8)
project(arm_harverster)
find_package(ament_cmake REQUIRED)
# Installs your Python script file and marks it executable
install(PROGRAMS
scripts/move_to_point.py
scripts/arm_point_controller.py
scripts/mission.py
scripts/detection.py
DESTINATION lib/${PROJECT_NAME}
)
# Installs your launch file directory
install(DIRECTORY launch
DESTINATION share/${PROJECT_NAME}
)
ament_package()