DLL is being built instead of a LIB file
I am trying to build the twitter library "minimoog-QTweetLib" and instead of it creating a .lib file it's creating a .dll file in the "LIB" directory. I have run into this before. How, do I for the environment to create a .lib file instead of a dll?
Ken
Re: DLL is being built instead of a LIB file
Hi Ken,
For your case you must add the following line to your .pro (project) file.
CONFIG+=staticlib
In this way the compiler knows you want a static lib instead of a shared library.
Regards.