QT += concurrent is a Qt 5 thing

In Qt 4, QtConcurrent is part of QtCore.

Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Thiago Macieira 2014-08-29 09:38:02 -07:00 committed by Dirk Hohndel
parent e6ce9a4df1
commit d698182fb3

View file

@ -2,11 +2,11 @@ CODECFORTR = UTF-8
CODECFORSRC = UTF-8 CODECFORSRC = UTF-8
include(subsurface-configure.pri) include(subsurface-configure.pri)
QT = core gui network svg concurrent QT = core gui network svg
lessThan(QT_MAJOR_VERSION, 5) { lessThan(QT_MAJOR_VERSION, 5) {
QT += webkit QT += webkit
} else { } else {
QT += printsupport QT += printsupport concurrent
!android: QT += webkitwidgets webkit !android: QT += webkitwidgets webkit
android: QT += androidextras android: QT += androidextras
} }