cmake_minimum_required(VERSION 3.8)
project(toid_msgs)

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)

find_package(geometry_msgs REQUIRED)

rosidl_generate_interfaces(${PROJECT_NAME}
  "msg/ActiveElements.msg"
  "msg/Rival.msg"
  "srv/SendDouble.srv"
  "srv/SendString.srv"
  "action/SimpleMoveCoords.action"
  "action/SimpleRotate.action"
  "action/SimpleTranslateX.action"
  "action/EmptyAction.action"
  DEPENDENCIES geometry_msgs
)

ament_package()