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.

83 lines
1.9KB

  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. pluginlib_export_plugin_description_file(hardware_interface hexapod_robot.xml)
  30. install(
  31. DIRECTORY hardware/include/
  32. DESTINATION include/hexapod_robot
  33. )
  34. install(
  35. DIRECTORY description
  36. DESTINATION share/hexapod_robot
  37. )
  38. install(
  39. DIRECTORY bringup/launch bringup/config
  40. DESTINATION share/hexapod_robot
  41. )
  42. install(TARGETS hexapod_robot
  43. EXPORT export_hexapod_robot
  44. ARCHIVE DESTINATION lib
  45. LIBRARY DESTINATION lib
  46. RUNTIME DESTINATION bin
  47. )
  48. if(BUILD_TESTING)
  49. find_package(ament_lint_auto REQUIRED)
  50. # the following line skips the linter which checks for copyrights
  51. # comment the line when a copyright and license is added to all source files
  52. set(ament_cmake_copyright_FOUND TRUE)
  53. # the following line skips cpplint (only works in a git repo)
  54. # comment the line when this package is in a git repo and when
  55. # a copyright and license is added to all source files
  56. set(ament_cmake_cpplint_FOUND TRUE)
  57. ament_lint_auto_find_test_dependencies()
  58. endif()
  59. ament_export_targets(export_hexapod_robot HAS_LIBRARY_TARGET)
  60. ament_export_dependencies(
  61. hardware_interface
  62. pluginlib
  63. rclcpp
  64. rclcpp_lifecycle
  65. )
  66. ament_package()