ROS Components for hexapod_robot
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.

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