CMakeLists.txt 7.7 KB

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