Reputation: 111
I'm working on a C++ project in VS9 that references a number of header files, .dll and .lib files.
I want to output this as a standalone DLL containing all the dependencies so that I can just use LoadLibrary() to pull this in.
Is this possible, and if so, how do I do it in VS9?
I've created the DLL, but running it through depends.exe gives me errors:
Error: At least one required implicit or forwarded dependency was not found.
Warning: At least one delay-load dependency module was not found.
Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
Thanks
Upvotes: 3
Views: 3579