CMakeLists.txt 7.5 KB

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