Deploy an Application on Windows: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(The user should try windeployqt first)
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
=Deploy an Application on Windows=
[[Category:HowTo]]
{{LangSwitch}}


This guide is written for Qt 5. It assumes that:
'''''NOTE: The recommended way to deploy your application is to use the [https://doc.qt.io/Qt-5/windows-deployment.html official deployment tool (windeployqt)]. Try that first! Continue reading this guide only if ''windeployqt'' doesn't quite work for you.'''''


* The ''release version'' of your app works correctly when you build + run it from Qt Creator
The ''windeployqt'' tool will gather files from a few different locations. Here is an example of an app that uses Qt Quick to display a picture (PACKAGE-SPECIFIC DLLS ARE NOT SHOWN):
* Your (dynamically-linked) copy of Qt is installed in C:\Qt\5.2.1\mingw48_32\


==Overview==
[[File:Qt_Deployment_Structure_Windows.png]]


To deploy a Qt app, you’ll need to gather files from a few different locations. Here is an example of an app that uses Qt Quick to display a picture (<span class="caps">NOTE</span>: <span class="caps">PACKAGE</span>-<span class="caps">SPECIFIC</span> <span class="caps">DLLS</span> <span class="caps">ARE</span> <span class="caps">NOT</span> <span class="caps">SHOWN</span>):
Sometimes, your app might be missing some functionality after deployment. Perhaps a window is blank, an image doesn't show, or a music file won't play. If this happens, ''windeployqt'' has probably forgotten to include a file that is only loaded at runtime (like a plug-in DLL).


[[Image:S582DlV.png|Where to find files for deployment]]
Here is a systematic (albeit brute-force) way to identify the missing files. This guide is written for Qt 5 and assumes that:
 
* The ''release version'' of your app works correctly when you build + run it from Qt Creator
==Finding the Required Files==
* Your (dynamically-linked) copy of Qt is installed in C:\Qt\5.2.1\mingw48_32\
 
See [http://doc.qt.io/qt-5/windows-deployment.html Qt for Windows – Deployment] ''[qt.io]'' for the official instructions.


Sometimes though, the deployment might seem successful and your app launches, but some things don’t work properly. Perhaps a window is blank, an image doesn’t show, or a music file won’t play. If this happens, you are probably missing a file that is only loaded at runtime (like a plug-in <span class="caps">DLL</span>).
=== Initial deployment (Quick and dirty) ===
 
These files can be tricky to identify. Here is a systematic way to deploy successfully.
 
===Initial deployment (Quick and dirty)===


# Close Qt Creator.
# Close Qt Creator.
Line 27: Line 21:
## All the '''.dll files''' from C:\Qt\5.2.1\mingw48_32\bin\
## All the '''.dll files''' from C:\Qt\5.2.1\mingw48_32\bin\
## All the '''folders''' from C:\Qt\5.2.1\mingw48_32\plugins\
## All the '''folders''' from C:\Qt\5.2.1\mingw48_32\plugins\
## (If you used <span class="caps">QML</span>) All the '''folders''' from C:\Qt\5.2.1\mingw48_32\qml\
## (If you used QML) All the '''folders''' from C:\Qt\5.2.1\mingw48_32\qml\
# Rename C:\Qt\ to C:\QtHidden\. (This turns your PC into a clean environment, just like one that doesn’t have Qt installed.)
# Rename C:\Qt\ to C:\QtHidden\ (This turns your PC into a clean environment, just like one that doesn't have Qt installed).
# Launch C:\Deployment\MyApp.exe.
# Launch C:\Deployment\MyApp.exe.


If your app worked correctly, congratulations! You are almost ready for deployment. You don’t want to ship a 1.5GB package though, so it’s time to clean up unused files.
If your app worked correctly, congratulations! You are almost ready for deployment. You don't want to ship a 1.5GB package though, so it's time to clean up unused files.


If it didn’t work correctly, ask for help (see the Appendix)
If it didn't work correctly, ask for help (see the Appendix)


===Final deployment (Cleaned up)===
=== Final deployment (Cleaned up) ===


Do the deletion steps below in C:\Deployment\ and all of its subdirectories. After each deletion, launch C:\Deployment\MyApp.exe and test it. If it stops working, restore the files you just deleted.
Do the deletion steps below in C:\Deployment\ and all of its subdirectories. After each deletion, launch C:\Deployment\MyApp.exe and test it. If it stops working, restore the files you just deleted.


# Launch MyApp.exe. While it is running, try to delete all <span class="caps">DLL</span>s. The <span class="caps">DLL</span>s that aren’t used will go to the recycle bin, leaving behind only the <span class="caps">DLL</span>s that you need. (This trick doesn’t work for .qml and qmldir files, however).
# Launch MyApp.exe. While it is running, try to delete all DLLs. The DLLs that aren't used will go to the recycle bin, leaving behind only the DLLs that you need. (This trick doesn't work for .qml and qmldir files, however).
# (If you used <span class="caps">QML</span>) Delete a few .qml files and try relaunching MyApp.exe. Repeat until you try all .qml files.
# (If you used QML) Delete a few .qml files and try relaunching MyApp.exe. Repeat until you try all .qml files.
# (If you used <span class="caps">QML</span>) Delete ''qmldir'' files from the folders that have no more <span class="caps">DLL</span>s or .qml files
# (If you used QML) Delete ''qmldir'' files from the folders that have no more DLLs or .qml files
 
When you have removed all the files that you don’t need,


When you have removed all the files that you don't need,
# Rename C:\QtHidden\ back to C:\Qt\ to restore your installation.
# Rename C:\QtHidden\ back to C:\Qt\ to restore your installation.
# Distribute your app.
# Distribute your app.


==Appendix: How to ask for help==
== Appendix: How to ask for help ==


If you still get stuck,
If you still get stuck,
 
# Start a new post in the [http://qt-project.org/forums/viewforum/14/ Qt Project forum]
# Start a new post in the [http://forum.qt.io/viewforum/14/ Qt Project forum] ''[qt.io]''
# Say that you followed this guide. Say which attempts passed, and which attempts failed.
# Say that you followed this guide. Say which attempts passed, and which attempts failed.
# Describe how it fails, and provide any error messages that you see.
# Describe how it fails, and provide any error messages that you see.

Revision as of 12:49, 18 August 2018

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

NOTE: The recommended way to deploy your application is to use the official deployment tool (windeployqt). Try that first! Continue reading this guide only if windeployqt doesn't quite work for you.

The windeployqt tool will gather files from a few different locations. Here is an example of an app that uses Qt Quick to display a picture (PACKAGE-SPECIFIC DLLS ARE NOT SHOWN):

Qt Deployment Structure Windows.png

Sometimes, your app might be missing some functionality after deployment. Perhaps a window is blank, an image doesn't show, or a music file won't play. If this happens, windeployqt has probably forgotten to include a file that is only loaded at runtime (like a plug-in DLL).

Here is a systematic (albeit brute-force) way to identify the missing files. This guide is written for Qt 5 and assumes that:

  • The release version of your app works correctly when you build + run it from Qt Creator
  • Your (dynamically-linked) copy of Qt is installed in C:\Qt\5.2.1\mingw48_32\

Initial deployment (Quick and dirty)

  1. Close Qt Creator.
  2. Copy the following into C:\Deployment\
    1. The release version of MyApp.exe
    2. All the .dll files from C:\Qt\5.2.1\mingw48_32\bin\
    3. All the folders from C:\Qt\5.2.1\mingw48_32\plugins\
    4. (If you used QML) All the folders from C:\Qt\5.2.1\mingw48_32\qml\
  3. Rename C:\Qt\ to C:\QtHidden\ (This turns your PC into a clean environment, just like one that doesn't have Qt installed).
  4. Launch C:\Deployment\MyApp.exe.

If your app worked correctly, congratulations! You are almost ready for deployment. You don't want to ship a 1.5GB package though, so it's time to clean up unused files.

If it didn't work correctly, ask for help (see the Appendix)

Final deployment (Cleaned up)

Do the deletion steps below in C:\Deployment\ and all of its subdirectories. After each deletion, launch C:\Deployment\MyApp.exe and test it. If it stops working, restore the files you just deleted.

  1. Launch MyApp.exe. While it is running, try to delete all DLLs. The DLLs that aren't used will go to the recycle bin, leaving behind only the DLLs that you need. (This trick doesn't work for .qml and qmldir files, however).
  2. (If you used QML) Delete a few .qml files and try relaunching MyApp.exe. Repeat until you try all .qml files.
  3. (If you used QML) Delete qmldir files from the folders that have no more DLLs or .qml files

When you have removed all the files that you don't need,

  1. Rename C:\QtHidden\ back to C:\Qt\ to restore your installation.
  2. Distribute your app.

Appendix: How to ask for help

If you still get stuck,

  1. Start a new post in the Qt Project forum
  2. Say that you followed this guide. Say which attempts passed, and which attempts failed.
  3. Describe how it fails, and provide any error messages that you see.
  4. Provide a screenshot of the contents in C:\Deployment\

Remember: The more info you provide, the better your chances of getting a solution!