From d73c70181fb9a445301478fa389c0be9aa337b2e Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 16 Nov 2020 13:22:41 +0100 Subject: [PATCH] downloader: require only Qt 5.11 Qt 5.11 is what current Raspian comes with. Unless we really need it, let's try not to have to manually download Qt on an already slow RaspberryPi. Signed-off-by: Robert C. Helling --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1116f0ce..a023a8a63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -287,7 +287,7 @@ elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable") endif() elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "DownloaderExecutable") # let's pick a version that's not ancient - find_package(Qt5 5.12 REQUIRED COMPONENTS ${QT_FIND_COMPONENTS}) + find_package(Qt5 5.11 REQUIRED COMPONENTS ${QT_FIND_COMPONENTS}) set(MAKE_TESTS OFF) endif() foreach(_QT_COMPONENT ${QT_FIND_COMPONENTS})