[solved]what dll files will my Qt app require??
-
wrote on 25 Feb 2012, 22:45 last edited by
I made an app that had lots of things from gui module like Qt widgets and its sub classes i give to a frind for checking with Qt core dll and qt gui dll but that app seem to be needing infinite dll files.how would i know which dlls my app needs.or the user of my app will also need to install qt library?i know the static linking is another way of doing this but right know i want it this way.sorry if it is very beginner question.
-
wrote on 26 Feb 2012, 07:01 last edited by
That depends on the IDE and compiler you are using - which one is it?
If it's MS Visual Studio - your friend needs to install "MS VS Redistributable package":http://www.microsoft.com/download/en/details.aspx?id=29 for your version of VS.
If it's Netbeans with gcc (included in MinGW) - you have to deploy your app with mingwm10.dll and libgcc_s_dw2-1.dll (other dll's could also be needed).
-
wrote on 26 Feb 2012, 10:40 last edited by
There is also more information "on deployment in the documentation ":http://developer.qt.nokia.com/doc/qt-4.8/deployment.html and links in there
-
wrote on 26 Feb 2012, 11:45 last edited by
Also you can use http://www.dependencywalker.com/
-
wrote on 26 Feb 2012, 16:51 last edited by
thank you all very much i got it solved.
-
wrote on 26 Feb 2012, 20:13 last edited by
Be sure and edit the title of the tread to add [Solved]. Thanks!
-
wrote on 28 Feb 2012, 13:23 last edited by
yes i am sure.thanks mlong
-
wrote on 29 Feb 2012, 03:53 last edited by
Kindly mention how u solved it. I am having similar problems in deployment and would like to know how best to approach it.
-
wrote on 15 Apr 2012, 22:45 last edited by
if you still have that problem SeedOfLife.i just added the .dlls for the Qt modules i was using in my application and in addition i also added the compiler specific dll i was using MingGw so i include the dll that d2uriel has mentionde in his post above.sorry for late reply