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 /shell_integration
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 'shell_integration')
-rw-r--r--shell_integration/dolphin/CMakeLists.txt2
-rw-r--r--shell_integration/libcloudproviders/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/shell_integration/dolphin/CMakeLists.txt b/shell_integration/dolphin/CMakeLists.txt
index 41cde7afb..aca4a2d51 100644
--- a/shell_integration/dolphin/CMakeLists.txt
+++ b/shell_integration/dolphin/CMakeLists.txt
@@ -2,7 +2,7 @@ project(dolphin-owncloud)
cmake_minimum_required(VERSION 2.8.12)
include(FeatureSummary)
-set(QT_MIN_VERSION "5.3.0")
+set(QT_MIN_VERSION "5.12.0")
set(KF5_MIN_VERSION "5.16.0")
set(KDE_INSTALL_USE_QT_SYS_PATHS ON CACHE BOOL "Install the plugin in the right directory")
diff --git a/shell_integration/libcloudproviders/CMakeLists.txt b/shell_integration/libcloudproviders/CMakeLists.txt
index 1f353352c..45c8b0f32 100644
--- a/shell_integration/libcloudproviders/CMakeLists.txt
+++ b/shell_integration/libcloudproviders/CMakeLists.txt
@@ -41,7 +41,7 @@ macro(libcloudproviders_add_config _sources)
endmacro(libcloudproviders_add_config _sources)
-find_package(Qt5 5.6 COMPONENTS DBus)
+find_package(Qt5 5.12 COMPONENTS DBus)
IF (UNIX AND Qt5DBus_FOUND AND LIBCLOUDPROVIDERS_FOUND)
STRING(TOLOWER "${APPLICATION_VENDOR}" DBUS_VENDOR)
STRING(REGEX REPLACE "[^A-z0-9]" "" DBUS_VENDOR "${DBUS_VENDOR}")