Hi,
I have created a Qt GUI application and I want to provide a linux executable that runs on as many distributions as possible. Is this possible or do I have to provide a separate executable for each distribution?
Thanks for your help
Hi,
I have created a Qt GUI application and I want to provide a linux executable that runs on as many distributions as possible. Is this possible or do I have to provide a separate executable for each distribution?
Thanks for your help
Statically linking your Qt libraries into your executable will increase your distributable size, but you will not have to worry about having the proper Qt libraries installed.
Take a look at the documentation here: http://doc.trolltech.com/4.6/deployment-x11.html#static-linking
Hope this helps.