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.

87 lines
2.0KB

  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. add_library(
  13. hexapod_robot
  14. SHARED
  15. hardware/hexapod_robot_hwi.cpp
  16. )
  17. target_compile_features(hexapod_robot PUBLIC cxx_std_17)
  18. target_include_directories(hexapod_robot PUBLIC
  19. $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/hardware/include>
  20. $<INSTALL_INTERFACE:include/hexapod_robot>
  21. )
  22. ament_target_dependencies(
  23. hexapod_robot PUBLIC
  24. hardware_interface
  25. pluginlib
  26. rclcpp
  27. rclcpp_lifecycle
  28. )
  29. target_link_libraries(hexapod_robot PUBLIC i2c)
  30. pluginlib_export_plugin_description_file(hardware_interface hexapod_robot.xml)
  31. install(
  32. DIRECTORY hardware/include/
  33. DESTINATION include/hexapod_robot
  34. )
  35. install(
  36. DIRECTORY description
  37. DESTINATION share/hexapod_robot
  38. )
  39. install(
  40. DIRECTORY bringup/launch bringup/config
  41. DESTINATION share/hexapod_robot
  42. )
  43. install(TARGETS hexapod_robot
  44. EXPORT export_hexapod_robot
  45. ARCHIVE DESTINATION lib
  46. LIBRARY DESTINATION lib
  47. RUNTIME DESTINATION bin
  48. )
  49. if(BUILD_TESTING)
  50. find_package(ament_lint_auto REQUIRED)
  51. # the following line skips the linter which checks for copyrights
  52. # comment the line when a copyright and license is added to all source files
  53. set(ament_cmake_copyright_FOUND TRUE)
  54. # the following line skips cpplint (only works in a git repo)
  55. # comment the line when this package is in a git repo and when
  56. # a copyright and license is added to all source files
  57. set(ament_cmake_cpplint_FOUND TRUE)
  58. ament_lint_auto_find_test_dependencies()
  59. endif()
  60. ament_export_targets(export_hexapod_robot HAS_LIBRARY_TARGET)
  61. ament_export_dependencies(
  62. hardware_interface
  63. pluginlib
  64. rclcpp
  65. rcl
  66. cpp_lifecycle
  67. i2c
  68. )
  69. ament_package()