mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
93c73ccc68
commit
29a714acc3
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue