From 4f326572d45e2b5f47d66f57e17775599a727064 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 12 Jul 2018 23:57:00 +0200 Subject: [PATCH] Fixed one .pro file for older Qt versions --- src/tl/unit_tests/unit_tests.pro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tl/unit_tests/unit_tests.pro b/src/tl/unit_tests/unit_tests.pro index 59ba2fddd..fb987e542 100644 --- a/src/tl/unit_tests/unit_tests.pro +++ b/src/tl/unit_tests/unit_tests.pro @@ -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 \ + } }