Original Post
Lets say I've got Foo.dll and Bar.dll. Those have the import libs Foo.lib and Bar.lib. Is there a tool that will let me merge those two libs together into a single FooBar.lib that will pull in both of those DLL's? (this is with Visual C++) Just about every other compiler/platform combination has an equivalent tool (ar for example), so I'm surprised that my search for a VC++ equivalent has been so fruitless :( I know it's not the end of the world (I can always link to two libs!), only needed for purely aesthetic reasons! Any help greatly appreciated!