0

I am trying to run my qt application on another (debian) machine. I get an error about missing libraries (for example, libQt5WebKitWidgets). Is it possible to bundle these libraries within my application ?

Simhor
  • 701
  • 1
  • 6
  • 8

1 Answers1

0

You need to either install the Qt libraries on the machine running your application, or statically link them into your application.

See here.

You could also try taking a look at the Qt Installer Framework as another alternative.

Community
  • 1
  • 1
Cory Klein
  • 51,188
  • 43
  • 183
  • 243