Deploying Windows to Windows 32 bit Shared - therecipe/qt GitHub Wiki
Regular deployment
-
Install the official version of Qt|Installation-on-Windows#official-version-with-android-support
-
Deploy your application
qtdeploy build desktop
You should find your deployed application inside the deploy
subfolder.
Docker deployment
-
Install Docker: https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe
-
Share the drive containing your GOPATH with docker
-
Pull the target image
docker pull therecipe/qt:windows_32_shared
- Deploy your application
qtdeploy -docker build windows_32_shared
You should find your deployed application inside the deploy
subfolder.
MSYS2 deployment
-
Install the [MSYS2 version of Qt](/therecipe/qt/wiki/Installation-on-Windows#msys2-version-without-android-support)
-
Export the environment variable
QT_MSYS2_ARCH=386
-
Deploy your application
qtdeploy build desktop
You should find your deployed application inside the deploy
subfolder.