X-Git-Url: https://defiant.homedns.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=CMakeLists.txt;h=9b9da57e90d13706c04f5665d3155c95dd64a148;hb=032cc385e1a612435b1c6b3b5971ee776548a403;hp=885c2136b25fcb10af4b80e5be421b99335083a4;hpb=47e8bfcf10b5ddbff2c3b6f66d7c59761e7ba53a;p=ros_roboint.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 885c213..9b9da57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(roboint) ## Find catkin macros and libraries ## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz) ## is used, also find other catkin packages -find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs message_generation) +find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs message_generation urdf controller_manager) ## System dependencies are found with CMake's conventions # find_package(Boost REQUIRED COMPONENTS system) @@ -38,6 +38,7 @@ add_message_files( generate_messages( DEPENDENCIES std_msgs + roboint ) ################################### @@ -73,16 +74,19 @@ include_directories(include ## Declare a cpp executable # add_executable(roboint_node src/roboint_node.cpp) add_executable(libft_adapter src/libft_adapter.cpp) +add_executable(robo_explorer_hardware src/robo_explorer_hardware.cpp) ## Add cmake target dependencies of the executable/library ## as an example, message headers may need to be generated before nodes add_dependencies(libft_adapter roboint_gencpp) +add_dependencies(robo_explorer_hardware roboint_gencpp) ## Specify libraries to link a library or executable target against # target_link_libraries(roboint_node # ${catkin_LIBRARIES} # ) target_link_libraries(libft_adapter ${catkin_LIBRARIES} roboint) +target_link_libraries(robo_explorer_hardware ${catkin_LIBRARIES}) ############# ## Install ##