You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to include a public header from another packages that includes the parameter header. However, this header is not available for that package as #include <example_parameters.hpp> but it is installed under example_parameters/example_parameters.hpp. How can we do this?
So the setup:
package_with_parameters/include/header.hpp
#include <example_parameters.hpp>
another_package/include/header.hpp
#include <package_with_parameters/header.hpp> // #include <example_parameters.hpp> cannot be found, example_parameters/example_parameters.hpp can be found