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.

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