I want to give a friend of mine a release build of a little project. It works perfectly fine when started from inside qtcreator, but doesn\'t open when double-clicked on the
Since you are talking about Qt5, make sure you have a platforms directory with at least qminimal.dll in it location in the directory of your program.exe file. They are part of the new changes made to Qt. (Possibly qwindows.dll as well).
Additionally, make sure you include the appropriate msvcr*.dll dlls if you do no compile with it statically linked. Check with dependency walker.
/myProgram.exe
/Qt5Gui.dll
/Qt5Core.dll
/ .... (other DLLs you require)
/platforms/qminimal.dll
/platforms/qwindows.dll (Not always required)