Whenever you link static libraries into your Visual C++ project you have to make sure that the value for the runtime library of the project matches the value that was used to compile the library. If for example the library was compiled with the option for static runtimes and you try to compile the project with dynamic runtimes the linker will throw an error.
Obviously the linker has a way of determining whether a library was compiled with static or dynamic runtimes. I was wondering if there is a command line tool that takes the library and can directly tell me what runtimes were used during its creation?