Fixed one .pro file for older Qt versions

This commit is contained in:
Matthias Koefferlein 2018-07-12 23:57:00 +02:00
parent 72c3288090
commit 4f326572d4
1 changed files with 6 additions and 0 deletions

View File

@ -34,21 +34,27 @@ SOURCES = \
equals(HAVE_QT, "0") {
# nothing
} else {
SOURCES += \
tlWebDAV.cc \
tlDeferredExecution.cc \
tlFileSystemWatcher.cc \
}
equals(HAVE_CURL, "1") {
SOURCES += \
tlHttpStream.cc \
} else {
equals(HAVE_QT, "0") {
# no HTTP stream available
} else {
SOURCES += \
tlHttpStream.cc \
}
}