When other C++ projects consume a published API, (lib, etc), what is the best way to publish the headers of that lib?
I am decoupling interfaces from implementations for several small projects, (100-2000 code artifacts) via different static/shared libraries--but with their specific headers. (example: api.lib, and api-impl.lib).
When I build these projects, the output goes to ..\bin\release ... And after that, I have custom post build events that copy headers recursively into the output folders to preserve the header hierarchies so that they can be included like: #include "Configuration/Logging/LogManager.h", (which corresponds to the namespace/class: "Configuration::Logging::LogManager".
What are the standard ways of doing this?
Are precompiled headers useful for this?
References would be greatly appreciated!