We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ur_kinematics
Branch: calibration_devel Use case: The issue came up here.
Problem statement:
The ur_kinematics package seems to use Boost includes via include_directories(SYSTEM ${Boost_INCLUDE_DIR}), which is a cache entry.
include_directories(SYSTEM ${Boost_INCLUDE_DIR})
cache entry
I'm not sure, though, why and how ur_kinematics would drop the own generation of such cache entries in that case, despite the package's
cache entries
find_package(Boost REQUIRED COMPONENTS system)
Possible solution: Use the result variable instead, as recommended here.
result variable
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
The text was updated successfully, but these errors were encountered:
Let me come back to this later...
Sorry, something went wrong.
This issue should be migrated to the upstream repo. As ur_kinematics needs some attention, anyway this might be a relevant point to consider.
Closing in favor of ros-industrial#603
fmauch
No branches or pull requests
Branch: calibration_devel
Use case: The issue came up here.
Problem statement:
The
ur_kinematics
package seems to use Boost includes viainclude_directories(SYSTEM ${Boost_INCLUDE_DIR})
, which is acache entry
.I'm not sure, though, why and how
ur_kinematics
would drop the own generation of suchcache entries
in that case, despite the package'sPossible solution:
Use the
result variable
instead, as recommended here.include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
The text was updated successfully, but these errors were encountered: