diff -r dee5afe5301f -r 3f74d0d4af4c doc/src/snippets/qmake/qtconfiguration.pro --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/src/snippets/qmake/qtconfiguration.pro Thu Apr 08 14:19:33 2010 +0300 @@ -0,0 +1,19 @@ +# 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]) +message(Demonstrations: $$[QT_INSTALL_DEMOS]) +#! [0] + +# Show configuration information. +message(CONFIG = $$CONFIG)