Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ why no .lib file created?

Tags:

visual-c++

I am using Visual Studio 2008 to create a dll. But cannot find the corresponding .lib file. Why? I need that file to put it into my tester.

like image 423
5YrsLaterDBA Avatar asked Jun 17 '10 15:06

5YrsLaterDBA


1 Answers

You will have to post some code or project settings. .lib files are only created when __declspec(dllexport) is used.

like image 163
Puppy Avatar answered Oct 01 '22 01:10

Puppy