Dababi
Dababi

Reputation: 185

Deploy qt application with all its dependencies

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

Answers (1)

SurvivalMachine
SurvivalMachine

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

Related Questions