eutobot_intergration/src/eutobot/eutobot_navigation2/CMakeLists.txt

28 lines
1.1 KiB
CMake

################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 3.5)
project(eutobot_navigation2)
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
endif()
################################################################################
# Find ament packages and libraries for ament and system dependencies
################################################################################
find_package(ament_cmake REQUIRED)
################################################################################
# Install
################################################################################
install(
DIRECTORY launch map param rviz
DESTINATION share/${PROJECT_NAME}
)
################################################################################
# Macro for ament package
################################################################################
ament_package()