How to compile (create) a Qt application to work on many Linux distributions?

I created a Qt GUI application and I want to provide a linux executable that works as many distributions as possible. Is this possible or should I provide a separate executable for each distribution?

thanks for the help

+3
source share
2 answers

Check out the LSB . This is the standard that many distributions use so that an LSB-compatible application runs on any of them. This should be a good start. If your application meets LSB requirements, you really have nothing to do.

+1

Source: https://habr.com/ru/post/1755275/


All Articles