Hello,
We have some internal pieces of codes we have to organize as static library/libraries. This code could be splitted as several libraries, organizes as a hierarchy, or put in only one library.
If tend to choose the first solution, but I’m not sure how to manage that with CMake.
Let the following dependencies, where A is the final client:
A → B → C
The dependencies could be retrieved with FetchContent
.
But if A retrieves B, it doesn’t know that B depends on C.
And A could also ask for C.
How to manage that ?