CMakeLists.txt 8.1 KB

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