diff options
author | Robert C. Helling <helling@atdotde.de> | 2020-11-16 13:22:41 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-03 13:26:55 -0800 |
commit | d73c70181fb9a445301478fa389c0be9aa337b2e (patch) | |
tree | b14a288b97263dfd8b7fda4a772caae28f1c17b1 /CMakeLists.txt | |
parent | 85f8978e740a5a6d9c3e1aefa2bf3dd1dfe5f584 (diff) | |
download | subsurface-d73c70181fb9a445301478fa389c0be9aa337b2e.tar.gz |
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 <helling@atdotde.de>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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}) |