0

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

Kevin yudo
  • 233
  • 4
  • 15
  • 1
    Possible duplicate of [Deploy Qt5 QML application](http://stackoverflow.com/questions/25049116/deploy-qt5-qml-application) – BaCaRoZzo Apr 26 '16 at 19:43

2 Answers2

2

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

talamaki
  • 5,324
  • 1
  • 27
  • 40
1

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.

Andrej Repiský
  • 477
  • 1
  • 6
  • 19