Windows, Mingw Qt Application Does Not Run On Deployed Computers
I have created a Qt application with Mingw. The application runs properly on the development computer after copying the required DLL's to the directory. However, when deploying on external computers, the application does not run at all.
Update: In addition, the applicat开发者_开发问答ion uses Sqlite3 via QtSql.
It's quite likely you're still missing some dll.
- Check the Windows event log for any errors after running the application. (Administrative Tools->Event Viewer).
- Try launching the application from a command prompt window.
- Try Dependency Walker.
Another thought is some missing configuration file or registry settings.
Double check against the Qt docs for deploying Windows Qt applications.
精彩评论