Building QT Project for other computers
-
I am very new to QT so I apologize in advance for my ignorance. I installed QT5 on my computer and QT Creator. I used QT Creator to build a QT application and can build and run within the IDE nicely. However, when I try to run the .exe, I get .dll errors. I'm assuming I need to add some QT .dlls to the project so it'll run on other computers as well, but don't really know how to proceed exactly. Can somebody please help me with this?
-
Welcome to DevNet
You need to deploy your app to the target computer.
From your post I see that your target is Windows
Take a look on these articles
"Qt for Windows - Deployment":http://qt-project.org/doc/qt-5/windows-deployment.html
"Deploy an Application on Windows":http://qt-project.org/wiki/Deploy_an_Application_on_Windows
"Deploying a real Qt app – understanding more of Qt":http://www.tripleboot.org/?p=536 -
Thank you very much! That's exactly what I needed and couldn't find.