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
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
The text was updated successfully, but these errors were encountered:
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.
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?
The text was updated successfully, but these errors were encountered: