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.

38 lines
1.1KB

  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. # uncomment the following section in order to fill in
  9. # further dependencies manually.
  10. # find_package(<dependency> REQUIRED)
  11. install(
  12. DIRECTORY description/urdf
  13. DESTINATION share/hexapod_robot
  14. )
  15. install(
  16. DIRECTORY bringup/launch bringup/config
  17. DESTINATION share/hexapod_robot
  18. )
  19. if(BUILD_TESTING)
  20. find_package(ament_lint_auto REQUIRED)
  21. # the following line skips the linter which checks for copyrights
  22. # comment the line when a copyright and license is added to all source files
  23. set(ament_cmake_copyright_FOUND TRUE)
  24. # the following line skips cpplint (only works in a git repo)
  25. # comment the line when this package is in a git repo and when
  26. # a copyright and license is added to all source files
  27. set(ament_cmake_cpplint_FOUND TRUE)
  28. ament_lint_auto_find_test_dependencies()
  29. endif()
  30. ament_package()