Within Qt application, we can use #ifdef Q_WS_QWS
block to conditionally compile parts of the code for QtEmbedded.
But we can’t give specific LIBS or INCLUDEPATH directives in our .pro
file.
It is possible to use platform specific directives like below:
win32 {
SOURCES += NetworkWin.cpp
}
But how can I differentiate builds for Linux desktop and builds for Linux on Arm with cross toolchain?