Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want kindly to know what do the following lines mean in .pro file and when should I use them?
@greaterThan(QT_MAJOR_VERSION, 4): QT += widgets@ and @CONFIG -= app_bundle@
I'm using mac and Qt 5.
For Qt5,
@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets @
equals
@ QT += widgets @
which is needed when you using QtWidgets module.
@ CONFIG -= app_bundle @
is needed when you don't want to create a app bundle. For example, when you create a console application.
@Robot, thank you so much for being helpful.