How to deploy QtWidgets applications?
-
How to deploy my QtWidgets apllications if:
0) I built Qt libs with cross-compiller (x86_64-w64-mingw32), including "windeployqt"- I use OS Ubuntu 16.04 LTS
Remarks:
0. I have no errors on building projects.- I have errors on deploying.
Question:
How to use "windeployqt" on Ubuntu?
Output:
Unable to find dependent libraries of /correct/path/to/file.exe :Not implemented. -
@ZenitFan219 said:
windeployqt is Windows Deployment Tool http://doc.qt.io/qt-5/windows-deployment.html
How to use "windeployqt" on Ubuntu?
Refer this http://doc.qt.io/qt-5/linux-deployment.html
-
I know that windeployqt is Windows Deployment Tool.
I built Qt on Ubuntu. Ubuntu == host. Windows == target platform. On Ubuntu windeployqt was built how app for linux for Windows Deploying.If it was easy, I did not ask this question.
-
How to use "windeployqt" on Ubuntu?
You have two options:
- You pack what's needed by hand and don't use the deployment tool at all.
- You try to run the said tool through wine, which may or may not work.
Cheers!