CMakeLists.txt 7.8 KB

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