CMakeLists.txt 7.8 KB

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