source: trunk/doc/src/snippets/qmake/qtconfiguration.pro@ 568

Last change on this file since 568 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 728 bytes
Line 
1# Show information about the Qt installation.
2#! [0]
3message(Qt version: $$[QT_VERSION])
4message(Qt is installed in $$[QT_INSTALL_PREFIX])
5message(Qt resources can be found in the following locations:)
6message(Documentation: $$[QT_INSTALL_DOCS])
7message(Header files: $$[QT_INSTALL_HEADERS])
8message(Libraries: $$[QT_INSTALL_LIBS])
9message(Binary files (executables): $$[QT_INSTALL_BINS])
10message(Plugins: $$[QT_INSTALL_PLUGINS])
11message(Data files: $$[QT_INSTALL_DATA])
12message(Translation files: $$[QT_INSTALL_TRANSLATIONS])
13message(Settings: $$[QT_INSTALL_SETTINGS])
14message(Examples: $$[QT_INSTALL_EXAMPLES])
15message(Demonstrations: $$[QT_INSTALL_DEMOS])
16#! [0]
17
18# Show configuration information.
19message(CONFIG = $$CONFIG)
Note: See TracBrowser for help on using the repository browser.