15 lines
387 B
CMake
15 lines
387 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
project(drone_interfaces)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
add_compile_options(-Wall -Wextra -Wpedantic)
|
|
endif()
|
|
|
|
# find dependencies
|
|
find_package(ament_cmake REQUIRED)
|
|
find_package(rosidl_default_generators REQUIRED)
|
|
|
|
rosidl_generate_interfaces(${PROJECT_NAME} "action/ExecuteMission.action")
|
|
|
|
ament_package()
|