Advertisement
0xff-mighty

lwa_ikfast_wrapper CMakeLists.txt

Mar 7th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.81 KB | None | 0 0
  1. cmake_minimum_required(VERSION 2.8.3)
  2. project(lwa_ikfast_wrapper)
  3.  
  4. find_package(catkin REQUIRED COMPONENTS lwa_ikfast_plugin moveit_core pluginlib roscpp std_msgs urdf)
  5.  
  6. catkin_package(
  7.    INCLUDE_DIRS include
  8.    LIBRARIES lwa_ikfast_wrapper
  9.    CATKIN_DEPENDS lwa_ikfast_plugin moveit_core pluginlib roscpp std_msgs urdf
  10. )
  11.  
  12. ###########
  13. ## Build ##
  14. ###########
  15.  
  16. ## Specify additional locations of header files
  17. include_directories(include
  18.   ${catkin_INCLUDE_DIRS}
  19. )
  20.  
  21. ## Declare a cpp executable
  22. add_executable(lwa_ikfast_wrapper_node src/lwa_ikfast_wrapper_node.cpp)
  23.  
  24. ## Add dependencies to the executable
  25. add_dependencies(lwa_ikfast_wrapper_node ${PROJECT_NAME})
  26.  
  27. ## Specify libraries to link a library or executable target against
  28. target_link_libraries(lwa_ikfast_wrapper_node
  29.   ${catkin_LIBRARIES}
  30. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement