0
0
mirror of https://github.com/yse/easy_profiler.git synced 2025-01-13 16:17:55 +08:00

Fix osx qt5 package on travis

This commit is contained in:
Sergey Yagovtsev 2017-06-19 00:00:51 +03:00
parent ca6d097f9a
commit db4483b32b

View File

@ -56,8 +56,12 @@ install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
sudo apt-get -y install qt55tools qt55script qt55base qt55svg;
else
brew install qt55;
brew link --force qt55;
brew install qt5;
brew link --force qt5;
brew linkapps qt5;
export HOMEBREW_QT5_VERSION=$(brew list --versions qt5 | rev | cut -d' ' -f1 | rev);
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs;
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins;
fi