Install plugins into lib tree#1228
Merged
facontidavide merged 1 commit intofacontidavide:mainfrom Dec 19, 2025
Merged
Conversation
Owner
|
have you checked that PlotJuggler can actually find the plugins? I am not sure it will |
Contributor
Author
|
It does, because I've added |
Owner
|
I am not 100% sure that this changes is ROS friendly... Have you tested that? |
Contributor
Author
|
Does it have to be ROS friendly though? I thought that's why there are the environment flags in the CMakeLists, which overwrite if(COMPILING_WITH_CATKIN)
set(PJ_PLUGIN_INSTALL_DIRECTORY ${CATKIN_PACKAGE_BIN_DESTINATION})
elseif(COMPILING_WITH_AMENT)
set(PJ_PLUGIN_INSTALL_DIRECTORY lib/${PROJECT_NAME})
else()
…
endif()(No, I haven't tested the two ROS builds yet, maybe next year at work.) |
jlab13
pushed a commit
to jlab13/PlotJuggler
that referenced
this pull request
Dec 30, 2025
jlab13
pushed a commit
to jlab13/PlotJuggler
that referenced
this pull request
Dec 30, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Install plugins into
${CMAKE_INSTALL_PREFIX}/lib/plotjuggler-pluginsfor non-ROS installs, which would be the appropriate location on Linux systems.The previous value
binwas ambiguous anyway. Not sure if this is how you like it or if you have a "portable" version of PlotJuggler in mind. I kept reading the executable directory for backwards compatibility.Fixes #1153