CMakeLists.txt 6.6 KB

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