Unified hexapod repository, containing all modules
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

70 lignes
1.5KB

  1. cmake_minimum_required(VERSION 3.8)
  2. project(hexapod_hardware)
  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(hardware_interface REQUIRED)
  9. find_package(pluginlib REQUIRED)
  10. find_package(rclcpp REQUIRED)
  11. find_package(rclcpp_lifecycle REQUIRED)
  12. add_library(
  13. hexapod_robot_hwi
  14. SHARED
  15. hardware/hexapod_robot_hwi.cpp
  16. )
  17. target_compile_features(hexapod_robot_hwi PUBLIC cxx_std_17)
  18. target_include_directories(hexapod_robot_hwi PUBLIC
  19. $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/hardware/include>
  20. $<INSTALL_INTERFACE:include>
  21. )
  22. ament_target_dependencies(
  23. hexapod_robot_hwi PUBLIC
  24. hardware_interface
  25. pluginlib
  26. rclcpp
  27. rclcpp_lifecycle
  28. )
  29. target_link_libraries(hexapod_robot_hwi PUBLIC i2c)
  30. pluginlib_export_plugin_description_file(hardware_interface hexapod_hardware.xml)
  31. # install(TARGETS hexapod_robot_ik_server
  32. # DESTINATION lib/${PROJECT_NAME}
  33. # )
  34. install(TARGETS hexapod_robot_hwi
  35. EXPORT export_hexapod_hardware
  36. ARCHIVE DESTINATION lib
  37. LIBRARY DESTINATION lib
  38. RUNTIME DESTINATION bin
  39. )
  40. if(BUILD_TESTING)
  41. find_package(ament_lint_auto REQUIRED)
  42. set(ament_cmake_copyright_FOUND TRUE)
  43. set(ament_cmake_cpplint_FOUND TRUE)
  44. ament_lint_auto_find_test_dependencies()
  45. endif()
  46. ament_export_targets(export_hexapod_hardware HAS_LIBRARY_TARGET)
  47. ament_export_dependencies(
  48. hardware_interface
  49. pluginlib
  50. rclcpp
  51. rcl
  52. cpp_lifecycle
  53. i2c
  54. )
  55. ament_package()