Reputation: 45771
Two questions about static library on Windows platform,
thanks in advance, George
Upvotes: 0
Views: 571
Reputation: 12008
Your question 2 is easy. the dumpbin
tool in VC can simply do this:
dumpbin /directives your_static_lib.lib
And then check the dependency library names by MSVC runtime library list
Upvotes: 1