Use the right Qt-module when building with Qt5

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2014-01-15 09:30:32 +01:00 committed by Dirk Hohndel
parent 93c73ccc68
commit 29a714acc3

View file

@ -1,6 +1,11 @@
include(subsurface-configure.pri)
QT = core gui network webkit svg
QT = core gui network svg
lessThan(QT_MAJOR_VERSION, 5) {
QT += webkit
} else {
QT += webkitwidgets
}
INCLUDEPATH += qt-ui $$PWD
mac: TARGET = Subsurface