I want to use conan to download and build some libraries in a specific folder.
The idea is that everything included in the export_sources
field must be downloaded in a given folder from which I run the conan install
command, and not in ~/.conan/data.
Once that is done, I want to move the downloaded files into separate directories (namely include, src, ...) starting from the given folder and then build the library.
Is there any way to do this?
Thanks in advance!