PDA

View Full Version : exe Build Issues



hojoff79
19th January 2011, 04:55
I am trying to use a program I built with QT Creator as a stand alone and send it to someone else. However, when i try to run the file that appears in the release folder, i get the systerm error "The program can't start because mingwm10.dll is missing from your computer."

I linked the mingwm10.dll folder from Qt\2009.5\mingw\bin into the program using the #include, but then I got like 500 errors relating to that file. How do I make this work standalone.

Thank you in advance.

ChrisW67
19th January 2011, 05:16
You ship the mingwm10.dll (and probably also libgcc_s_dw2-1.dll) with your executable and place it in the same directory. You will also need to ship the Qt runtime libraries and plugins that you use.

You should read Deploying Qt Applications