Could someone point out some sources where I can read about the compilation procedures for large c++ projects which are build up from multiple components.
The problem is that now, if I do some modification in one of the components, I have to build the whole project from scratch.
Is there a way that allows me to build the components in a standalone manner, and when all of them are built, "join" them together into a single binary? And if I have to do a modification in one of the components, to be able to build only that component, and link it into the binary?
Thanks for your answers.
Regards, Cristian