I have multiple 3rd party statically linked libraries for my application, as well as my own DLL that contains all my commonly used code across my applications.
My main question is, is it possible to link those 3rd party libraries into a single dll, instead of directly into the application. If possible, it would cut down the EXE file-size, and all the extra linking that I have to do across each application that uses these libraries as well as aid me reduce the overall executable file-size as well as reduce direct exe debug time.
I however don't know if this is possible to do. I'm using MSVC 2010. (C++)