Reputation: 185
I developed a QT application on ubunty linux. I want to include dependencies in my deployed file so that my application can works in any other machine running with ubuntu.
Upvotes: 0
Views: 265
Reputation: 8356
The best way to achieve this is to distribute your application as a .dpkg
so the dependencies can be automatically installed. Including dependencies in the binary is tricky and generally means statically compiling libraries instead of dynamically linking them but even then you run into problems.
Upvotes: 1