-
Notifications
You must be signed in to change notification settings - Fork 30
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
Add support for finding several dependencies without pkg-config #95
Add support for finding several dependencies without pkg-config #95
Conversation
8c60cdf
to
ab2c08d
Compare
we are also calling
I suspect that we could use |
Yes, a few of those would probably need to expose some other parameters in the ign_manual_search API, but for the moment I preferred to have the minimal changes necessary for microsoft/vcpkg#11273 (comment) . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@traversaro Can you bring this up to date so we can land it?
This macro is useful for manually find a C/C++ library, and it is typically used as a fallback if a library is not found with pkg-config. Signed-off-by: Silvio Traversaro <silvio.traversaro@iit.it>
Signed-off-by: Silvio Traversaro <silvio.traversaro@iit.it>
Signed-off-by: Silvio Traversaro <silvio.traversaro@iit.it>
ab2c08d
to
8dbba57
Compare
Done! |
In particular, add a dedicated
ign_manual_search
CMake macro, and then use it inFindUUID
(fix #64) and in the find scripts for FFMPEG libraries.