[Solved] Qt 5 application won't start on non-development machine
-
Hello all,
I have successfully ported a Qt application from 4.8 to 5.0. On the development machine (Win 7 32bit) everything runs fine as well in debug as in release mode.
The only remaining issue is, when trying to run this application on another PC (tried Win 7 and XP, no Qt installation on either), it refuses to start; i.e. it only comes to the point, before the QApplication instance is created in main. No further errors or entries in the Windows event viewer can be found.Any suggestions how to fix this or how to catch up on the error?
Tanks in advance!
-
You're welcome.
Platform abstraction has been changed in Qt5, now consisting of loadable modules, like platform/qwindows.dll for Windows. Those modules are loaded at runtime, so you won't get a warning from the dynamic linker if there are none.
Feel free to prepend the title with '[Solved] ...' if your question has been solved to indicate that there is a solution inside.