ROS Components for hexapod_robot
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

119 linhas
2.8KB

  1. cmake_minimum_required(VERSION 3.8)
  2. project(hexapod_robot)
  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. find_package(rosidl_default_generators REQUIRED)
  13. # Build hexapod_robot_interfaces
  14. set(srv_files
  15. "srv/HexapodRobotInverseKinematics.srv"
  16. )
  17. rosidl_generate_interfaces(${PROJECT_NAME}
  18. ${srv_files}
  19. )
  20. # Build hexapod_robot_ik_server
  21. add_executable(hexapod_robot_ik_server
  22. "kinematics/hexapod_robot_ik_service.cpp"
  23. )
  24. target_compile_features(hexapod_robot_ik_server PUBLIC cxx_std_17)
  25. target_include_directories(hexapod_robot_ik_server PUBLIC
  26. $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/kinematics/include>
  27. $<INSTALL_INTERFACE:include>
  28. )
  29. ament_target_dependencies(
  30. hexapod_robot_ik_server
  31. rclcpp
  32. )
  33. rosidl_target_interfaces(hexapod_robot_ik_server ${PROJECT_NAME} "rosidl_typesupport_cpp")
  34. # Build hexapod_robot_hwi
  35. add_library(
  36. hexapod_robot_hwi
  37. SHARED
  38. hardware/hexapod_robot_hwi.cpp
  39. )
  40. target_compile_features(hexapod_robot_hwi PUBLIC cxx_std_17)
  41. target_include_directories(hexapod_robot_hwi PUBLIC
  42. $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/hardware/include>
  43. $<INSTALL_INTERFACE:include>
  44. )
  45. ament_target_dependencies(
  46. hexapod_robot_hwi PUBLIC
  47. hardware_interface
  48. pluginlib
  49. rclcpp
  50. rclcpp_lifecycle
  51. )
  52. target_link_libraries(hexapod_robot_hwi PUBLIC i2c)
  53. pluginlib_export_plugin_description_file(hardware_interface hexapod_robot.xml)
  54. install(
  55. DIRECTORY description
  56. DESTINATION share/hexapod_robot
  57. )
  58. install(
  59. DIRECTORY bringup/launch bringup/config
  60. DESTINATION share/hexapod_robot
  61. )
  62. install(TARGETS hexapod_robot_ik_server
  63. DESTINATION lib/hexapod_robot
  64. )
  65. install(TARGETS hexapod_robot_hwi
  66. EXPORT export_hexapod_robot
  67. ARCHIVE DESTINATION lib
  68. LIBRARY DESTINATION lib
  69. RUNTIME DESTINATION bin
  70. )
  71. if(BUILD_TESTING)
  72. find_package(ament_lint_auto REQUIRED)
  73. # the following line skips the linter which checks for copyrights
  74. # comment the line when a copyright and license is added to all source files
  75. set(ament_cmake_copyright_FOUND TRUE)
  76. # the following line skips cpplint (only works in a git repo)
  77. # comment the line when this package is in a git repo and when
  78. # a copyright and license is added to all source files
  79. set(ament_cmake_cpplint_FOUND TRUE)
  80. ament_lint_auto_find_test_dependencies()
  81. endif()
  82. ament_export_targets(export_hexapod_robot HAS_LIBRARY_TARGET)
  83. ament_export_dependencies(
  84. rosidl_default_runtime
  85. hardware_interface
  86. pluginlib
  87. rclcpp
  88. rcl
  89. cpp_lifecycle
  90. i2c
  91. )
  92. ament_package()