Compile with version.lib
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
I downloaded a code that requires to compile it with version.lib. // Remember: You must link version.lib to the project for this class to work !! I am using VC++6. Can any body tell me how to do this? Any help is greatly appreciated
-
I downloaded a code that requires to compile it with version.lib. // Remember: You must link version.lib to the project for this class to work !! I am using VC++6. Can any body tell me how to do this? Any help is greatly appreciated
a simple way (but not necessarily portable to non-MS systems (I only use VC++ versions) is to put a line like this in stdafx.cpp #pragma comment(lib,"version.lib") which will put a comment in the STDAFX.OBJ file to tell the linker to search that library. Steve S Developer for hire