From: Alexander Batischev Date: Mon, 8 Nov 2021 12:31:50 +0000 (+0300) Subject: CMake: fail if `Qt5::GuiPrivate` is not found X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~18^2~112^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d8560dcb1965a2ffa1b3a5fee14d57d62bf3a4f9;p=nextcloud-desktop.git CMake: fail if `Qt5::GuiPrivate` is not found `nextcloud` and `nextcloudCore` depend on three Qt5 components which aren't mentioned in `find_library`: `Xml`, `Network`, and `GuiPrivate`. The first two are omitted by mistake, apparently, so this commit just adds them. `GuiPrivate` is a special case: it doesn't have its own CMake config, so adding it to "required components" in `find_package` will always fail the build. Thus, we implement our own check instead. Signed-off-by: Alexander Batischev --- diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index 3cbca8dbf..b41810cd3 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -1,5 +1,8 @@ project(gui) -find_package(Qt5 REQUIRED COMPONENTS Widgets Svg Qml Quick QuickControls2) +find_package(Qt5 REQUIRED COMPONENTS Widgets Svg Qml Quick QuickControls2 Xml Network) +if (NOT TARGET Qt5::GuiPrivate) + message(FATAL_ERROR "Could not find GuiPrivate component of Qt5. It might be shipped as a separate package, please check that.") +endif() if(CMAKE_BUILD_TYPE MATCHES Debug) add_definitions(-DQT_QML_DEBUG)