I've compiled my own library file(.lib) with VS2010, but when I try to reference it like
#pragma comment(lib,"path/to/lib.lib")
I keep getting unresolved external symbols...What am I doing wrong? the #pragma comment(lib, "*.lib") worked for any library so far, and I also tried linking it under settings, no succes.
dumpbinon your .lib file. You can run it from a visual studio command prompt. Check that the symbols you are expecting are actually visible in the library, then report back! – Rook Jul 31 '12 at 9:35dumpbinfrom there, or search for it (on my machine it is inC:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\dumpbin.exe). Now you can run something likedumpbin /ALL mylib.lib > symbols.txtand open up the result in a text editor and search though. – Rook Jul 31 '12 at 9:59