CMakeLists.txt 8.1 KB

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