CMakeLists.txt 7.4 KB

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