Skip to content
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

[question] How can I get sub graph of a dependency in a recipe? #3414

Open
1 task
SpaceIm opened this issue Sep 30, 2023 · 2 comments
Open
1 task

[question] How can I get sub graph of a dependency in a recipe? #3414

SpaceIm opened this issue Sep 30, 2023 · 2 comments
Milestone

Comments

@SpaceIm
Copy link

SpaceIm commented Sep 30, 2023

What is your question?

I need to find libs in topological order of a dependency (openssl) and its dependencies, in order to get their libs, lib dirs, include dirs, defines, system libs/frameworks so that I can patch a CMakeLists for check_symbol_exists() (for the well known bug in targets defined by CMakeDeps not working with these functions: conan-io/conan#12012 & conan-io/conan#12180).
I don't want the full graph (other unrelated dependencies of this recipe), and I don't want only cpp_info of openssl (I need also its dependencies (there might be zlib depending on an openssl option)).

How can I do that with self.dependencies?

Have you read the CONTRIBUTING guide?

  • I've read the CONTRIBUTING guide
@memsharded
Copy link
Member

Thanks for your question @SpaceIm

In https://docs.conan.io/2/reference/tools/cpp_info.html?highlight=topological_sort#aggregating-information-in-custom-generators you have the topological_sort iterator of dependencies, returning them in order.

Moving this to docs repo for better docs for this

@memsharded memsharded transferred this issue from conan-io/conan Sep 30, 2023
@memsharded memsharded added this to the 2 milestone Sep 30, 2023
@SpaceIm
Copy link
Author

SpaceIm commented Sep 30, 2023

Thanks @memsharded , in this example all dependencies of current recipe are aggregated, but I don't understand how to aggregate a sub part of the graph (openssl and its dependencies, openssl being one of the dependencies of current recipe). The problem is that conan objects are not always typed, so I don't always know what I'm manipulating and what is returned.
For example self.dependencies doesn't seem to be the same type than self.dependencies[dep].dependencies, and my IDE doesn't give any type information for the later, and conan doc doesn't give much detail.

Here is what I've done (it works but it's ugly): https://github.com/conan-io/conan-center-index/blob/daf4299e60642fc281c01afbb46607bfb8570a48/recipes/dcmtk/all/conanfile.py#L162-L220

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants