Kevin yudo
Kevin yudo

Reputation: 233

How To Deploy Qt MinGW application for windows

I have develop an application by using QT/ MinGW 32 bit.This app work on my pc Windows 8. But ı want to deploy this app to my friends whose computers has windows 7. How to deploy it.Is there a necessary programs,framework to work it like .net framework, C++ runtime etc.. I don't know.I can't find a clear solution

Upvotes: 0

Views: 2044

Answers (2)

talamaki
talamaki

Reputation: 5482

To deploy a Qt app on Windows, you'll need to gather files from a few different locations. Here is an example how to do it.

enter image description here

Upvotes: 2

Andrej Repiský
Andrej Repiský

Reputation: 487

See http://doc.qt.io/qt-5/windows-deployment.html, section "Creating the Application Package". You just have to copy all the necessary DLLs (and other files in case of Qt Quick) to the same directory as executable file. The best way to test whether you have all the required files is to rename your Qt installation directory (C:\Qt) to something else and try to double-click your executable. Deployment on Windows 7 is no different from Windows 8.

Upvotes: 1

Related Questions