C ++ why not .lib file?

I am using Visual Studio 2008 to create a dll. But the corresponding .lib file could not be found. What for? I need this file to put it in my tester.

+5
source share
1 answer

You will need to publish some code or project parameters .. lib files are created only when __declspec (dllexport) is used.

+8
source

All Articles