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.

203 lines
6.8 KiB

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