CMakeLists.txt 7.1 KB

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