Advertisement
Guest User

for amit cmake

a guest
Feb 1st, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.76 KB | None | 0 0
  1. cmake_minimum_required(VERSION 2.8.3)
  2. project(bnp26_stdr_control)
  3.  
  4. find_package(catkin_simple REQUIRED)
  5.  
  6. catkin_simple()
  7.  
  8. # Libraries: uncomment the following and edit arguments to create a new library
  9. #cs_add_library(bnp26_stdr_library src/minimal_controller.cpp)
  10.  
  11. # Executables: uncomment the following and edit arguments to compile new nodes
  12. # may add more of these lines for more nodes from the same package
  13. cs_add_executable(bnp26_stdr_control_node src/minimal_controller.cpp)
  14.  
  15. #the following is required, if desire to link a node in this package with a library created in this same package
  16. # edit the arguments to reference the named node and named library within this package
  17. target_link_libraries(bnp26_stdr_control_node)
  18.  
  19. cs_install()
  20. cs_export()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement