1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Building: Use system QtFtp module when available with Qt5

See #1503
This commit is contained in:
David Rosca 2014-10-28 12:21:31 +01:00
parent 3962c63927
commit a70a03272f

View File

@ -506,7 +506,12 @@ RESOURCES += \
data/oxygen-fallback.qrc
isEqual(QT_MAJOR_VERSION, 5) {
include(3rdparty/qftp/qftp.pri)
qtHaveModule(ftp) {
QT *= ftp
} else {
include(3rdparty/qftp/qftp.pri)
}
SOURCES += tools/qzregexp.cpp
}