CMakeLists.txt 6.8 KB

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