-
Notifications
You must be signed in to change notification settings - Fork 200
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
Wrong include paths when bfl is build in same workspace #96
Comments
Looking at the verbose output:
the bfl include path is set to
to work. The file is located in /home/stwirth/people_test/devel_isolated/bfl/include/bfl/pdf/mcpdf.h .
|
When
e.g.
The "catch all" include directive |
The CMake find package call (using pkgconfig) people/people_tracking_filter/CMakeLists.txt Lines 5 to 6 in 413543b
sets ${BFL_INCLUDE_DIRS} to /home/stwirth/people_test/devel_isolated/bfl/include/bfl when bfl is also build from source and to /opt/ros/kinetic/include/bfl if ros-kinetic-bfl is installed.
So it seems that all include statements should actually not include |
Alternatively, |
PR with fix: #97. |
Compiling on xenial/kinetic from source with bfl in the same workspace fails with
To reproduce:
Make sure you do NOT have
ros-kinetic-bfl
installed.Full log of the build:
#76 was meant to fix this but still the include paths are wrong.
The text was updated successfully, but these errors were encountered: