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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2015-11-05 13:35:14 +0300
committerMarkus Goetz <markus@woboq.com>2015-11-05 13:35:42 +0300
commitdae724b21cd4aa267e199c7987ce71a60dd7523e (patch)
treea1d4d22aa75485c1074d5502962a57757f7343b2 /cmake
parent6052e49bcc40654465e26a0b1ee8085bb902508c (diff)
QtVersionAbstraction: Quick not neeed on OS X
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/QtVersionAbstraction.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/modules/QtVersionAbstraction.cmake b/cmake/modules/QtVersionAbstraction.cmake
index d7cbde33a..6f222e097 100644
--- a/cmake/modules/QtVersionAbstraction.cmake
+++ b/cmake/modules/QtVersionAbstraction.cmake
@@ -22,7 +22,9 @@ if( Qt5Core_FOUND )
find_package(Qt5WebKitWidgets REQUIRED)
find_package(Qt5WebKit REQUIRED)
find_package(Qt5PrintSupport REQUIRED)
- find_package(Qt5Quick REQUIRED)
+ if(NOT APPLE)
+ find_package(Qt5Quick REQUIRED) # only needed on Windows because of OBS dependencies(?)
+ endif()
find_package(Qt5Widgets REQUIRED)
if(APPLE)
find_package(Qt5MacExtras REQUIRED)