0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 08:01:51 +08:00

Update .travis.yml

This commit is contained in:
Sergey Yagovtsev 2018-02-15 12:54:11 +03:00 committed by GitHub
parent 022c43dd96
commit ad57e00067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,9 +53,10 @@ install:
brew install gcc5;
brew install qt55;
brew link --force qt55;
export HOMEBREW_QT5_VERSION=$(brew list --versions qt55 | rev | cut -d' ' -f1 | rev);
ln -s /usr/local/Cellar/qt/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs;
ln -s /usr/local/Cellar/qt/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins;
export QT_NAME="qt@5.5";
export HOMEBREW_QT5_VERSION=$(brew list --versions $QT_NAME | rev | cut -d' ' -f1 | rev);
ln -s /usr/local/Cellar/$QT_NAME/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs;
ln -s /usr/local/Cellar/$QT_NAME/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins;
fi