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.

118 line
2.7KB

  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(TARGETS hexapod_robot_ik_server
  61. DESTINATION lib/${PROJECT_NAME}
  62. )
  63. install(TARGETS hexapod_robot_hwi
  64. EXPORT export_hexapod_robot
  65. ARCHIVE DESTINATION lib
  66. LIBRARY DESTINATION lib
  67. RUNTIME DESTINATION bin
  68. )
  69. if(BUILD_TESTING)
  70. find_package(ament_lint_auto REQUIRED)
  71. # the following line skips the linter which checks for copyrights
  72. # comment the line when a copyright and license is added to all source files
  73. set(ament_cmake_copyright_FOUND TRUE)
  74. # the following line skips cpplint (only works in a git repo)
  75. # comment the line when this package is in a git repo and when
  76. # a copyright and license is added to all source files
  77. set(ament_cmake_cpplint_FOUND TRUE)
  78. ament_lint_auto_find_test_dependencies()
  79. endif()
  80. ament_export_targets(export_hexapod_robot HAS_LIBRARY_TARGET)
  81. ament_export_dependencies(
  82. rosidl_default_runtime
  83. hardware_interface
  84. pluginlib
  85. rclcpp
  86. rcl
  87. cpp_lifecycle
  88. i2c
  89. )
  90. ament_package()