Files
GoldenCheetah/travis/install-qt.sh
gcoco 740bee0faf Fix QT install.
Allows sub-version so we can do QT5.5.1 (Webkit) and QT5.6 (Webengine) at a later date.
2016-04-02 17:36:41 -04:00

10 lines
235 B
Bash

#!/bin/bash
echo "QT=>" "$QT" "<="
#!/bin/bash
if [ "$QT_VER" = "5.5.1" ]
then
brew install https://raw.githubusercontent.com/Homebrew/homebrew/fb64f6cd91ff19d9c651b7851a74808bde6bc60f/Library/Formula/qt5.rb
else
brew install $QT
fi