-
Notifications
You must be signed in to change notification settings - Fork 749
Deploying Windows to Windows 32 bit Shared
therecipe edited this page Feb 15, 2026
·
3 revisions
-
Install the official version of Qt
-
Deploy your application
qtdeploy build desktop
You should find your deployed application inside the deploy subfolder.
-
Install Docker: https://desktop.docker.com/win/main/amd64/Docker%20Desktop%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.
-
Install the MSYS2 version of Qt
-
Export the environment variable
QT_MSYS2_ARCH=386 -
Deploy your application
qtdeploy build desktop
You should find your deployed application inside the deploy subfolder.