POSIX shell.

This commit is contained in:
Martin Rotter 2016-08-24 11:33:06 +02:00
parent 823d2ce75b
commit 09cbb25ad7
2 changed files with 3 additions and 1 deletions

View file

@ -4,10 +4,11 @@ if test "$TRAVIS_OS_NAME" = "osx"; then
# Mac OS X. # Mac OS X.
brew update brew update
brew install qt5 brew install qt5
brew link --force qt5
else else
# Linux. # Linux.
sudo add-apt-repository ppa:beineri/opt-qt57-trusty -y sudo add-apt-repository ppa:beineri/opt-qt57-trusty -y
sudo apt-get update sudo apt-get update
sudo apt-get -y install qt57tools qt57base qt57webengine sudo apt-get -y install qt57tools qt57base qt57webengine
. /opt/qt57/bin/qt57-env.sh bash /opt/qt57/bin/qt57-env.sh
fi fi

View file

@ -24,6 +24,7 @@
#include <QDebug> #include <QDebug>
#include <QThreadPool> #include <QThreadPool>
#include <QMutexLocker> #include <QMutexLocker>
#include <QString>
FeedDownloader::FeedDownloader(QObject *parent) FeedDownloader::FeedDownloader(QObject *parent)