QMake Platform Platform Values

http://doc.qt.digia.com/4.6/qmake-advanced-usage.html#platform-scope-values

The Nokia QMake documentation notes that there are at least three values ​​for the platform area: win32, macx, and unix. The documentation states:

In addition to the win32, macx, and unix values ​​used in many coverage conditions, various other built-in values ​​for the platform and compiler can be tested using scopes.

However, I cannot find them anywhere; Does anyone know where this information can be found. Also, "win" and "mac" seem to work instead of win32 and macx ... aliases?

+7
qt documentation qmake nokia
source share
1 answer

The list can be found in the mkspecs directory in Qt sources. Well, this is not really a list, but each subdirectory defines one area name.

+4
source share

All Articles