CMakeLists.txt 7.3 KB

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