Unified hexapod repository, containing all modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5KB

  1. cmake_minimum_required(VERSION 3.8)
  2. project(taranis)
  3. if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
  4. add_compile_options(-Wall -Wextra -Wpedantic)
  5. endif()
  6. # find dependencies
  7. find_package(ament_cmake REQUIRED)
  8. find_package(rclcpp REQUIRED)
  9. find_package(rosidl_default_generators REQUIRED)
  10. # Build Taranis interfaces
  11. set(msg_files
  12. "msg/TaranisPacket.msg"
  13. )
  14. rosidl_generate_interfaces(${PROJECT_NAME}
  15. ${msg_files}
  16. )
  17. # Build Taranis publisher node
  18. add_executable(taranis_node src/taranis_node.cpp)
  19. ament_target_dependencies(taranis_node rclcpp)
  20. rosidl_target_interfaces(taranis_node ${PROJECT_NAME} "rosidl_typesupport_cpp")
  21. target_include_directories(taranis_node PUBLIC
  22. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
  23. $<INSTALL_INTERFACE:include>)
  24. target_compile_features(taranis_node PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17
  25. install(TARGETS taranis_node
  26. DESTINATION lib/${PROJECT_NAME})
  27. if(BUILD_TESTING)
  28. find_package(ament_lint_auto REQUIRED)
  29. # the following line skips the linter which checks for copyrights
  30. # comment the line when a copyright and license is added to all source files
  31. set(ament_cmake_copyright_FOUND TRUE)
  32. # the following line skips cpplint (only works in a git repo)
  33. # comment the line when this package is in a git repo and when
  34. # a copyright and license is added to all source files
  35. set(ament_cmake_cpplint_FOUND TRUE)
  36. ament_lint_auto_find_test_dependencies()
  37. endif()
  38. ament_package()