I am getting back to work on my project and as the first thing I would like to make it able to use additional library placed in external dll file. In other words I am trying to deploy dynamic linked application.

Unfortunately, after reading several different articles and threads I am a little bit confused about what I should do.

http://doc.qt.nokia.com/4.7-snapshot/sharedlibrary.html
http://techbase.kde.org/Policies/Bin...ssues_With_C++

Currently I am reading these two articles and I already know that I should focus on shared libraries because they are in fact DLL (or rather DLL are Microsoft's idea for that).

And to the project itself, I am adding now chunks of the code as mentioned in the first article in this paragraph -> "In each header of the library, we specify the following:".

By the way I am already having dll file. But I assume my Qt is statically built and somehow I remember that it is impossible to make dynamically linked application when using Qt built like this, am I right ?