Skip to content

Commit

Permalink
fix add_dependencies error (utexas-bwi/bwi#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-oquin committed Mar 8, 2018
1 parent 18d9a52 commit 11a0df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ add_executable(find_grasps src/nodes/find_grasps.cpp)

## Add cmake target dependencies of the executable/library
## as an example, message headers may need to be generated before nodes
add_dependencies(grasp_localizer ${catkin_EXPORTED_TARGETS})
add_dependencies(grasp_localizer_server ${catkin_EXPORTED_TARGETS})
add_dependencies(grasp_localizer ${${PROJECT_NAME}_EXPORTED_TARGETS})
add_dependencies(grasp_localizer_server ${${PROJECT_NAME}_EXPORTED_TARGETS})

## Specify libraries to link a library or executable target against
target_link_libraries(quadric ${PCL_LIBRARIES} lapack)
Expand Down

0 comments on commit 11a0df7

Please sign in to comment.