Hi
I want to make dynamic library on windows
I using qt creator 2.4 and msvc 2010

In qmake i write this commands
Qt Code:
  1. QT -= core gui
  2.  
  3. TEMPLATE = lib
  4.  
  5. CONFIG += dll
To copy to clipboard, switch view to plain text mode 
Project build without issues but in in build directory i found only .dll file without .lib file
( I need from this .lib to link to this .dll )
What im doing wrong ???