diff options
author | Thiago Macieira <thiago@macieira.org> | 2014-08-29 09:38:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-29 09:58:50 -0700 |
commit | d698182fb31eb4741d1337414b7e516bb6102c2f (patch) | |
tree | a306825a9274b295cc5ccfefd42518b205e5cc3f /subsurface.pro | |
parent | e6ce9a4df11af8d0ff759a2e8ac2012747355f8f (diff) | |
download | subsurface-d698182fb31eb4741d1337414b7e516bb6102c2f.tar.gz |
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>
Diffstat (limited to 'subsurface.pro')
-rw-r--r-- | subsurface.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurface.pro b/subsurface.pro index 2c5393e36..63024ceec 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -2,11 +2,11 @@ CODECFORTR = UTF-8 CODECFORSRC = UTF-8 include(subsurface-configure.pri) -QT = core gui network svg concurrent +QT = core gui network svg lessThan(QT_MAJOR_VERSION, 5) { QT += webkit } else { - QT += printsupport + QT += printsupport concurrent !android: QT += webkitwidgets webkit android: QT += androidextras } |