Quantcast
Channel: How to check the installed Qt version on Mac OS X - Stack Overflow
Browsing all 8 articles
Browse latest View live

Answer by bleater for How to check the installed Qt version on Mac OS X

If installed via brew, this will get the version into the variable QT_VERSIONQT_VERSION=`brew list --versions qt5 | sed -En -e 's/qt ([0-9._]+).*/\1/p'`You can then invoke it...

View Article



Answer by Thiago Gouvea for How to check the installed Qt version on Mac OS X

On terminal:qmake -vIt should return versions of QMake and Qt.Something like:QMake version 3.0Using Qt version 5.6.2 in /Users/thiago/anaconda/lib

View Article

Answer by i i for How to check the installed Qt version on Mac OS X

If you installed with brew, just do...brew info qtorbrew info qt5Update:Doing it this way will cut out all the extra stuff and only show versions.brew list --versions qtorbrew list --versions qt5Here's...

View Article

Answer by PopcornKing for How to check the installed Qt version on Mac OS X

cd to the include directory where your qt headers are located and then...grep --include=\*.h -rnw ./ -e "QT_VERSION_STR"which should output something like..../QtCore/qglobal.h:40:#define QT_VERSION_STR...

View Article

Answer by Robin for How to check the installed Qt version on Mac OS X

IF you speak about programming here...: At compile time you can check Qt's version with QT_VERSION_STR. During runtime you can use qVersion(). Obviously, the version you build you application with does...

View Article


Answer by Erik for How to check the installed Qt version on Mac OS X

Go to your "Applications>>Tools" folder and launch the System-Profiler. Look at "Software>>Frameworks>>QTKit". There you will find the version.To get in in a terminal (to use it from...

View Article

Answer by Tom Anderson for How to check the installed Qt version on Mac OS X

If you can find where Qt's headers are installed, qglobal.h contains a define for QT_VERSION_STR. You can simply grep for that.

View Article

How to check the installed Qt version on Mac OS X

Is there a command to check the version of the installed Qt on Mac OS X. My Mac OS X version is 10.6.7.Eidt: Update the status 10/28/2011When running /usr/sbin/system_profiler SPFrameworksDataType, the...

View Article

Browsing all 8 articles
Browse latest View live




Latest Images