[solved]what dll files will my Qt app require??
-
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.
-
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).
-
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
-
Also you can use http://www.dependencywalker.com/
-
Kindly mention how u solved it. I am having similar problems in deployment and would like to know how best to approach it.
-
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