We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following command doesn't work after "brew install qt5 --HEAD":
> QT5VERSION=`pkg-config --cflags Qt5Core | sed 's/^.*\(5\..\..\).*/\1/g'`
The output of pkg-config --cflags looks like this (no version number)
> echo $QT5VERSION -I/usr/local/Cellar/qt5/HEAD/include/QtCore -I/usr/local/Cellar/qt5/HEAD/include
A better command is this:
> QT5VERSION=`pkg-config --modversion Qt5Core`
The output of pkg-config --modversion looks like:
>pkg-config --modversion Qt5Core 5.2.2
The text was updated successfully, but these errors were encountered:
30a973e
No branches or pull requests
The following command doesn't work after "brew install qt5 --HEAD":
The output of pkg-config --cflags looks like this (no version number)
A better command is this:
The output of pkg-config --modversion looks like:
The text was updated successfully, but these errors were encountered: