From a631d5b3da2db55f3209546bb6a8bf0c67924cb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20PORTAY?= Date: Wed, 14 Aug 2024 13:18:21 +0200 Subject: [PATCH] package/qt6tools: fix missing host-qt6base dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds the host dependency host-qt6base as host-qt6tools requires the Qt cmake modules to be installed. Fixes: $ make qt6tools (...) CMake Error at CMakeLists.txt:21 (find_package): Could not find a package configuration file provided by "Qt6" (requested version 6.7.2) with any of the following names: Qt6Config.cmake qt6-config.cmake Add the installation prefix of "Qt6" to CMAKE_PREFIX_PATH or set "Qt6_DIR" to a directory containing one of the above files. If "Qt6" provides a separate development package or SDK, be sure it has been installed. Signed-off-by: Gaƫl PORTAY Signed-off-by: Thomas Petazzoni --- package/qt6/qt6tools/qt6tools.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/qt6/qt6tools/qt6tools.mk b/package/qt6/qt6tools/qt6tools.mk index d996f75b34..09c986cfc6 100644 --- a/package/qt6/qt6tools/qt6tools.mk +++ b/package/qt6/qt6tools/qt6tools.mk @@ -41,5 +41,7 @@ ifeq ($(BR2_PACKAGE_QT6DECLARATIVE),y) QT6TOOLS_DEPENDENCIES += qt6declarative endif +HOST_QT6TOOLS_DEPENDENCIES = host-qt6base + $(eval $(cmake-package)) $(eval $(host-cmake-package))