-
Notifications
You must be signed in to change notification settings - Fork 96
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
Conan recipe with the basic example doesn't work #620
Comments
I'm not an expert at all of conan, but does conan install the library or just build it? |
@jcarpent, it can do many things!
Depending on your system profile (combination of OS, architecture, compiler, etc), Conan will download corresponding existing packages ( While developing a new recipe, - the workflow usually involves The last 2 columns on the right have links to the stdout, here's the direct link to the |
Hi, This is a conan issue, not a hpp-fcl issue. |
Greetings 👋
My team is experimenting with the
hpp-fcl
and I'd like to help facilitate the build process with custom options for the dependency libraries... Hence - Conan package manager for C and C++ developers to the rescue!The initial version of the Conan recipe is here: conan-io/conan-center-index#25219
After building the package successfully and checking it for the project, I encountered a problem that my internal library with dependency on the
hpp-fcl
has these compilation errors on#include
statements:I also replicated the same problem by adding the Conan-style test for the recipe with the example from the hpp-fcl/README.md:
Error details
Build environment: Dockerfile
It's not my 1st custom Conan recipe, and others seem to be working fine...
So I suspect that something could be missing in the hpp-fcl/CMakeLists.txt to make the
hpp-fcl
recipe working with standard instructions. There's a way to patch the library's source code from the Conan recipe side (for example: octomap), but my lack of CMake and C/C++ knowledge is rather annoying 😬I'd greatly appreciate your ideas on what I might be missing
🙏
The text was updated successfully, but these errors were encountered: