Qt 6.11 is out! See what's new in the release
blog
How to find out plugins that my app needs
-
I'm trying to write a tool for linux that would help with deployment, I was wondering if there's a way to get the plugins that my app needs.
I can find out the so files that the application needs using
ldd binaryFilebut, for example if the application uses any plugin, for example any of the imageformats plugins, I can not know unless I run it on another system and debug the error messages
So my question is, Is there a way to get all the dependencies my app needs so that I can automate the deployment process
PS, Yes I took a look at linuxdeployqt :D
-
Thank you @hskoglund !!!
Simple and to the point !