Hello everyone,
i'm currently looking for a convinient way to scrape the source files from the dependencies of a project that uses conan.
What i'm trying to achieve:
conan info . --paths -j (note that all of this happens inside CI))export_folder delivered by conan info and extracting the link from conandata.yml)The current way feels a bit cumbersome (and not really correct), is there an easier way you can think of to achieve this? Any help would be highly appreciated! Thanks :)
Not an answer, just sharing a couple of links that could be interesting:
Hi @letmejustputthishere,
I would suggest that you try two options:
conanfile.py you can try to access the folders for the dependencies using self.deps_cpp_info["xxxx"] and get the information there.conanfile so you will be able to find the folders.Please tell me if this helps or if you have any more questions.
Thanks a lot for your answers, that was really helpful!