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.

207 lines
6.8 KiB

1 year ago
1 year ago
  1. cmake_minimum_required(VERSION 2.8.3)
  2. project(stretch_demos)
  3. ## Compile as C++11, supported in ROS Kinetic and newer
  4. # add_compile_options(-std=c++11)
  5. ## Find catkin macros and libraries
  6. ## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
  7. ## is used, also find other catkin packages
  8. find_package(catkin REQUIRED COMPONENTS
  9. genmsg
  10. actionlib
  11. actionlib_msgs
  12. geometry_msgs
  13. nav_msgs
  14. control_msgs
  15. trajectory_msgs
  16. rospy
  17. std_msgs
  18. std_srvs
  19. tf
  20. tf2
  21. )
  22. ## System dependencies are found with CMake's conventions
  23. # find_package(Boost REQUIRED COMPONENTS system)
  24. ## Uncomment this if the package has a setup.py. This macro ensures
  25. ## modules and global scripts declared therein get installed
  26. ## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
  27. catkin_python_setup()
  28. ################################################
  29. ## Declare ROS messages, services and actions ##
  30. ################################################
  31. ## To declare and build messages, services or actions from within this
  32. ## package, follow these steps:
  33. ## * Let MSG_DEP_SET be the set of packages whose message types you use in
  34. ## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
  35. ## * In the file package.xml:
  36. ## * add a build_depend tag for "message_generation"
  37. ## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET
  38. ## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
  39. ## but can be declared for certainty nonetheless:
  40. ## * add a exec_depend tag for "message_runtime"
  41. ## * In this file (CMakeLists.txt):
  42. ## * add "message_generation" and every package in MSG_DEP_SET to
  43. ## find_package(catkin REQUIRED COMPONENTS ...)
  44. ## * add "message_runtime" and every package in MSG_DEP_SET to
  45. ## catkin_package(CATKIN_DEPENDS ...)
  46. ## * uncomment the add_*_files sections below as needed
  47. ## and list every .msg/.srv/.action file to be processed
  48. ## * uncomment the generate_messages entry below
  49. ## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
  50. ## Generate messages in the 'msg' folder
  51. # add_message_files(
  52. # FILES
  53. # Message1.msg
  54. # Message2.msg
  55. # )
  56. ## Generate services in the 'srv' folder
  57. # add_service_files(
  58. # FILES
  59. # Service1.srv
  60. # Service2.srv
  61. # )
  62. ## Generate actions in the 'action' folder
  63. add_action_files(
  64. FILES
  65. ArucoHeadScan.action
  66. VisualServo.action
  67. )
  68. ## Generate added messages and services with any dependencies listed here
  69. generate_messages(
  70. DEPENDENCIES
  71. actionlib_msgs
  72. )
  73. ################################################
  74. ## Declare ROS dynamic reconfigure parameters ##
  75. ################################################
  76. ## To declare and build dynamic reconfigure parameters within this
  77. ## package, follow these steps:
  78. ## * In the file package.xml:
  79. ## * add a build_depend and a exec_depend tag for "dynamic_reconfigure"
  80. ## * In this file (CMakeLists.txt):
  81. ## * add "dynamic_reconfigure" to
  82. ## find_package(catkin REQUIRED COMPONENTS ...)
  83. ## * uncomment the "generate_dynamic_reconfigure_options" section below
  84. ## and list every .cfg file to be processed
  85. ## Generate dynamic reconfigure parameters in the 'cfg' folder
  86. # generate_dynamic_reconfigure_options(
  87. # cfg/DynReconf1.cfg
  88. # cfg/DynReconf2.cfg
  89. # )
  90. ###################################
  91. ## catkin specific configuration ##
  92. ###################################
  93. ## The catkin_package macro generates cmake config files for your package
  94. ## Declare things to be passed to dependent projects
  95. ## INCLUDE_DIRS: uncomment this if your package contains header files
  96. ## LIBRARIES: libraries you create in this project that dependent projects also need
  97. ## CATKIN_DEPENDS: catkin_packages dependent projects also need
  98. ## DEPENDS: system dependencies of this project that dependent projects also need
  99. catkin_package(
  100. # INCLUDE_DIRS include
  101. # LIBRARIES stretch_demos
  102. # CATKIN_DEPENDS actionlib actionlib_msgs geometry_msgs nav_msgs rospy std_msgs tf tf2
  103. # DEPENDS system_lib
  104. )
  105. ###########
  106. ## Build ##
  107. ###########
  108. ## Specify additional locations of header files
  109. ## Your package locations should be listed before other locations
  110. include_directories(
  111. # include
  112. ${catkin_INCLUDE_DIRS}
  113. )
  114. ## Declare a C++ library
  115. # add_library(${PROJECT_NAME}
  116. # src/${PROJECT_NAME}/stretch_demos.cpp
  117. # )
  118. ## Add cmake target dependencies of the library
  119. ## as an example, code may need to be generated before libraries
  120. ## either from message generation or dynamic reconfigure
  121. # add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
  122. ## Declare a C++ executable
  123. ## With catkin_make all packages are built within a single CMake context
  124. ## The recommended prefix ensures that target names across packages don't collide
  125. # add_executable(${PROJECT_NAME}_node src/stretch_demos_node.cpp)
  126. ## Rename C++ executable without prefix
  127. ## The above recommended prefix causes long target names, the following renames the
  128. ## target back to the shorter version for ease of user use
  129. ## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
  130. # set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
  131. ## Add cmake target dependencies of the executable
  132. ## same as for the library above
  133. # add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
  134. ## Specify libraries to link a library or executable target against
  135. # target_link_libraries(${PROJECT_NAME}_node
  136. # ${catkin_LIBRARIES}
  137. # )
  138. #############
  139. ## Install ##
  140. #############
  141. # all install targets should use catkin DESTINATION variables
  142. # See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
  143. ## Mark executable scripts (Python etc.) for installation
  144. ## in contrast to setup.py, you can choose the destination
  145. #install(PROGRAMS
  146. # DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
  147. # )
  148. ## Mark executables and/or libraries for installation
  149. # install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_node
  150. # ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
  151. # LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
  152. # RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
  153. # )
  154. ## Mark cpp header files for installation
  155. # install(DIRECTORY include/${PROJECT_NAME}/
  156. # DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
  157. # FILES_MATCHING PATTERN "*.h"
  158. # PATTERN ".svn" EXCLUDE
  159. # )
  160. ## Mark other files for installation (e.g. launch and bag files, etc.)
  161. # install(FILES
  162. # # myfile1
  163. # # myfile2
  164. # DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
  165. # )
  166. #############
  167. ## Testing ##
  168. #############
  169. ## Add gtest based cpp test target and link libraries
  170. # catkin_add_gtest(${PROJECT_NAME}-test test/test_stretch_demos.cpp)
  171. # if(TARGET ${PROJECT_NAME}-test)
  172. # target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
  173. # endif()
  174. ## Add folders to be run by python nosetests
  175. # catkin_add_nosetests(test)