Reputation: 7594
In windows you can run windeployqt.exe to approximate the library, qml, and plugin dependencies of a Qt application.
In Linux I can use ldd to determine library dependencies, but I have not found a way to establish which additional Qml files need to be present as well as which plugins I should include in my installer. Any suggestions?
Upvotes: 7
Views: 4971
Reputation: 4214
There is the linuxdeployqt project on github, which can be helpful.
From looking at linuxdeployqt code it seems:
Scan qml files in qmldirs for import statements, deploy used imports from Qml2ImportsPath to ./qml
Upvotes: 1