Checking that all libs and dlls are from the same build?

Posted by unknownthreat on Stack Overflow See other posts from Stack Overflow or by unknownthreat
Published on 2010-05-29T10:04:58Z Indexed on 2010/05/29 10:12 UTC
Read the original article Hit count: 322

I am developing a program in VS C++ 2008.

Right now, I have a huge list of dll and lib dependencies and I am adding some more. I worry that when I need to update a dependency by building from source (where I have to manually replace built dlls and libs in the correct place), if I accidently forgot to replace something or vice versa, I may run into a compile and/or runtime problem. And finding which place goes wrong can be a bit difficult.

So is there some sort of program or method out there that can suit this task to ease building a program with many updating dependencies?

© Stack Overflow or respective owner

Related posts about visual-studio-2008

Related posts about visual-c++