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
path: root/admin
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 /admin
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 'admin')
-rw-r--r--admin/osx/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/osx/CMakeLists.txt b/admin/osx/CMakeLists.txt
index 83b572a9e..55130798b 100644
--- a/admin/osx/CMakeLists.txt
+++ b/admin/osx/CMakeLists.txt
@@ -11,7 +11,7 @@ else()
set(MAC_INSTALLER_DO_CUSTOM_BACKGROUND "0")
endif()
-find_package(Qt5 5.6 COMPONENTS Core REQUIRED)
+find_package(Qt5 5.12 COMPONENTS Core REQUIRED)
configure_file(create_mac.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/create_mac.sh)
configure_file(macosx.pkgproj.cmake ${CMAKE_CURRENT_BINARY_DIR}/macosx.pkgproj)
configure_file(pre_install.sh.cmake ${CMAKE_CURRENT_BINARY_DIR}/pre_install.sh)