summaryrefslogtreecommitdiffstats
path: root/qmake/doc/snippets/qmake/qtconfiguration.pro
blob: 55e13be35250d0cf99c8a1044dfcca223b6331da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Show information about the Qt installation.
#! [0]
message(Qt version: $$[QT_VERSION])
message(Qt is installed in $$[QT_INSTALL_PREFIX])
message(Qt resources can be found in the following locations:)
message(Documentation: $$[QT_INSTALL_DOCS])
message(Header files: $$[QT_INSTALL_HEADERS])
message(Libraries: $$[QT_INSTALL_LIBS])
message(Binary files (executables): $$[QT_INSTALL_BINS])
message(Plugins: $$[QT_INSTALL_PLUGINS])
message(Data files: $$[QT_INSTALL_DATA])
message(Translation files: $$[QT_INSTALL_TRANSLATIONS])
message(Settings: $$[QT_INSTALL_SETTINGS])
message(Examples: $$[QT_INSTALL_EXAMPLES])
#! [0]

# Show configuration information.
message(CONFIG = $$CONFIG)