Skip to content

Commit

Permalink
Fix include exports
Browse files Browse the repository at this point in the history
  • Loading branch information
henningkayser committed Nov 7, 2019
1 parent 5919b32 commit 51f9014
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions moveit_core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ set(THIS_PACKAGE_INCLUDE_DIRS
utils/include
)

set(libraries
set(THIS_PACKAGE_LIBRARIES
moveit_exceptions
moveit_background_processing
moveit_kinematics_base
Expand Down Expand Up @@ -200,8 +200,8 @@ add_subdirectory(collision_distance_field)
add_subdirectory(kinematics_metrics)
add_subdirectory(dynamics_solver)

ament_export_include_directories(include)
ament_export_libraries(${libraries})
ament_export_include_directories(${THIS_PACKAGE_INCLUDE_DIRS})
ament_export_libraries(${THIS_PACKAGE_LIBRARIES})
ament_export_dependencies(${THIS_PACKAGE_INCLUDE_DEPENDS})

ament_package()

0 comments on commit 51f9014

Please sign in to comment.