mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
The Network module is explicitly required by qt6tools: Failed to find required Qt component "Network". We need host-qt6base with Sql support for host-qt6tools to build the qhelpgenerator host tool. qt6tools will fail to build if qhelpgenerator is not available: Failed to find the host tool "Qt6::qhelpgenerator". It is part of the Qt6ToolsTools package, but the package did not contain the tool. Make sure that the host module Tools was built with all features enabled (no explicitly disabled tools). Signed-off-by: Roy Kollen Svendsen <roykollensvendsen@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
617 B
Plaintext
18 lines
617 B
Plaintext
config BR2_PACKAGE_QT6TOOLS
|
|
bool "qt6tools"
|
|
select BR2_PACKAGE_QT6BASE_NETWORK
|
|
# qt6tools needs host-qt6tools, and host-qt6tools needs
|
|
# network support in qt6base. In addition, we also need
|
|
# host-qt6base with Sql support to build the qhelpgenerator
|
|
# tool, if target support for Sql is present
|
|
select BR2_PACKAGE_HOST_QT6BASE_NETWORK
|
|
select BR2_PACKAGE_HOST_QT6BASE_SQL if BR2_PACKAGE_QT6BASE_SQL
|
|
help
|
|
Qt is a cross-platform application and UI framework for
|
|
developers using C++.
|
|
|
|
Qt Tools provides tools facilitate the development
|
|
and design of applications.
|
|
|
|
https://github.com/qt/qttools
|