I work on Windows 10 in Qt Creator .
Can I make a Qt Widgets application under Linux in Qt Creator on Windows?
If so, how?
There are too many lines and they are all different.
When writing a program, you should follow a number of rules, in particular, not to go beyond the limits of Qt and C ++, not to use platform-dependent API.
And then you need to take your source code, take the Linux distro you need and build on it.
qmake . && make qmake . && make will do everything - KoVadimSource: https://ru.stackoverflow.com/questions/911701/
All Articles