Skip to content

Fix missing libs #3430

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
37e2684
Update CMakeLists.txt
mosfet80 Jan 9, 2025
080e08f
Merge branch 'moveit:main' into main
mosfet80 Jan 10, 2025
f298e31
Merge branch 'moveit:main' into main
mosfet80 Jan 12, 2025
3addbf2
Merge branch 'moveit:main' into main
mosfet80 Jan 13, 2025
ef3fb3d
Merge branch 'moveit:main' into main
mosfet80 Jan 13, 2025
30ac51a
Merge branch 'moveit:main' into main
mosfet80 Jan 14, 2025
9cc8e62
Merge branch 'moveit:main' into main
mosfet80 Jan 20, 2025
aedda1c
Merge branch 'moveit:main' into main
mosfet80 Jan 22, 2025
25e170c
Merge branch 'moveit:main' into main
mosfet80 Jan 23, 2025
f3097d9
Merge branch 'moveit:main' into main
mosfet80 Jan 25, 2025
b151b57
Merge branch 'moveit:main' into main
mosfet80 Jan 28, 2025
0c47898
Merge branch 'moveit:main' into main
mosfet80 Jan 31, 2025
8e58de6
Merge branch 'moveit:main' into main
mosfet80 Feb 2, 2025
f600045
Merge branch 'moveit:main' into main
mosfet80 Feb 4, 2025
8469f41
Merge branch 'moveit:main' into main
mosfet80 Feb 6, 2025
b4f6087
Merge branch 'moveit:main' into main
mosfet80 Feb 7, 2025
8e41cdd
Merge branch 'moveit:main' into main
mosfet80 Feb 13, 2025
d15cd67
Merge branch 'moveit:main' into main
mosfet80 Feb 16, 2025
04a2a56
Merge branch 'moveit:main' into main
mosfet80 Feb 18, 2025
4a1daae
Merge branch 'moveit:main' into main
mosfet80 Feb 21, 2025
68f7d7d
Merge branch 'moveit:main' into main
mosfet80 Feb 25, 2025
d60ee23
Merge branch 'moveit:main' into main
mosfet80 Feb 27, 2025
f37f61f
Merge branch 'moveit:main' into main
mosfet80 Mar 8, 2025
c889398
Merge branch 'moveit:main' into main
mosfet80 Mar 19, 2025
48f4a37
Merge branch 'moveit:main' into main
mosfet80 Mar 19, 2025
1af8864
Merge branch 'moveit:main' into main
mosfet80 Mar 20, 2025
ef809ff
Merge branch 'moveit:main' into main
mosfet80 Mar 25, 2025
4349529
Merge branch 'moveit:main' into main
mosfet80 Apr 4, 2025
714ebb9
Merge branch 'moveit:main' into main
mosfet80 Apr 8, 2025
59c9e6f
fix missing dependencies.
mosfet80 Apr 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion moveit_ros/visualization/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ find_package(Eigen3 REQUIRED)
find_package(rviz_common REQUIRED)
find_package(rviz_default_plugins REQUIRED)
find_package(rviz_ogre_vendor REQUIRED)
find_package(rviz_resource_interfaces REQUIRED)

# Finds Boost Components
include(ConfigExtras.cmake)
Expand Down Expand Up @@ -82,7 +83,8 @@ set(THIS_PACKAGE_INCLUDE_DEPENDS
Eigen3
rviz_ogre_vendor
rviz_common
rviz_default_plugins)
rviz_default_plugins
rviz_resource_interfaces)

include_directories(
rviz_plugin_render_tools/include robot_state_rviz_plugin/include
Expand Down
Loading