Sierra 10.12
1.8.4
Tried compiling in xcode as well and xcode fails for null value
@nbeazy
Please sit tight. I are just working on this issue in our next release.
Duplicate of #5626
I still get a could not find qmake error when runnning "./hm.sh conf -g1 --mac-sdk 10.12 --mac-identity Sierra". Any potential solutions to this?
After installing qt (brew install qt), you should also setup your PATH to include the QT bin directory.
One way to do this is the following in your .bash_profile:
export PATH=/usr/local/Cellar/qt5/5.x.x_x/bin:$PATH
That will allow qmake to be found.
You also need to change it on every Qt update :|
Most helpful comment
After installing qt (
brew install qt), you should also setup your PATH to include the QT bin directory.One way to do this is the following in your .bash_profile:
export PATH=/usr/local/Cellar/qt5/5.x.x_x/bin:$PATHThat will allow
qmaketo be found.