Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-14 22:15:45 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-05-14 22:15:45 +0300
commit3867e73fd536a8f4b0e572e0281aa406a742a3a5 (patch)
tree72ea5f30d0c0dbcb3693ca27c8013ab18305e540 /src/CMakeLists.txt
parent57ad12f3d22957c90f7a3b8c98f7bf75f1f0fe42 (diff)
Stop supporting Qt older than 5.12
This both removes older Qt from the CI and also adjust all the find_package calls in CMakeLists.txt Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index ce4d4fbd1..cb83e784a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -4,10 +4,7 @@ endif()
set(synclib_NAME ${APPLICATION_EXECUTABLE}sync)
-find_package(Qt5 5.6 COMPONENTS Core Network Xml Concurrent WebEngineWidgets WebEngine REQUIRED)
-if (Qt5Core_VERSION VERSION_LESS 5.9.0)
-message(STATUS "For HTTP/2 support, compile with Qt 5.9 or higher.")
-endif()
+find_package(Qt5 5.12 COMPONENTS Core Network Xml Concurrent WebEngineWidgets WebEngine REQUIRED)
if(NOT TOKEN_AUTH_ONLY)
find_package(Qt5Keychain REQUIRED)