From: Jesse Van Gavere <jesseevg@gmail.com>
To: buildroot@buildroot.org
Cc: Jesse Van Gavere <jesseevg@gmail.com>,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: [Buildroot] [PATCH v3 29/29] package/qt6/qt6base: add support for building examples
Date: Fri, 26 Aug 2022 14:52:52 +0200 [thread overview]
Message-ID: <20220826125252.16782-30-jesseevg@gmail.com> (raw)
In-Reply-To: <20220826125252.16782-1-jesseevg@gmail.com>
Now with dependency on DBus/OpenGL
A minimal set of Qt options was selected for which building the examples
started working.
Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com>
---
package/qt6/qt6base/Config.in | 17 +++++++++++++++++
package/qt6/qt6base/qt6base.mk | 6 ++++++
2 files changed, 23 insertions(+)
diff --git a/package/qt6/qt6base/Config.in b/package/qt6/qt6base/Config.in
index ffa5a56b40..d85190b6e2 100644
--- a/package/qt6/qt6base/Config.in
+++ b/package/qt6/qt6base/Config.in
@@ -40,6 +40,23 @@ config BR2_PACKAGE_QT6BASE_DBUS
help
This option enables the D-Bus module.
+config BR2_PACKAGE_QT6BASE_EXAMPLES
+ bool "Compile and install examples "
+ depends on BR2_PACKAGE_QT6_GL_AVAILABLE
+ depends on BR2_PACKAGE_DBUS
+ select BR2_PACKAGE_QT6BASE_NETWORK
+ select BR2_PACKAGE_QT6BASE_XML
+ select BR2_PACKAGE_QT6BASE_DBUS
+ select BR2_PACKAGE_QT6BASE_GUI
+ select BR2_PACKAGE_QT6BASE_WIDGETS
+ select BR2_PACKAGE_QT6BASE_OPENGL
+ select BR2_PACKAGE_QT6BASE_OPENGL_LIB
+ help
+ If unsure, say N.
+
+comment "Building examples needs OpenGL/DBus support"
+ depends on !BR2_PACKAGE_QT6_GL_AVAILABLE || !BR2_PACKAGE_DBUS
+
config BR2_PACKAGE_QT6BASE_GUI
bool "gui module"
select BR2_PACKAGE_FREETYPE
diff --git a/package/qt6/qt6base/qt6base.mk b/package/qt6/qt6base/qt6base.mk
index 9b5328e5f2..2324d3825c 100644
--- a/package/qt6/qt6base/qt6base.mk
+++ b/package/qt6/qt6base/qt6base.mk
@@ -335,6 +335,12 @@ else
QT6BASE_CONF_OPTS += -DFEATURE_icu=OFF
endif
+ifeq ($(BR2_PACKAGE_QT6BASE_EXAMPLES),y)
+QT6BASE_CONF_OPTS += -DQT_BUILD_EXAMPLES=ON
+else
+QT6BASE_CONF_OPTS += -DQT_BUILD_EXAMPLES=OFF
+endif
+
ifeq ($(BR2_PACKAGE_QT6BASE_NETWORK),y)
QT6BASE_CONF_OPTS += -DFEATURE_network=ON
else
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
prev parent reply other threads:[~2022-08-26 12:58 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-26 12:52 [Buildroot] [PATCH v3 00/29] Extend Qt6 configuration Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 01/29] package/qt6/qt6base: Add qt6base hash file Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 02/29] package/qt6/qt6base: Add license information Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 03/29] package/qt6/qt6base: add support for network module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 04/29] package/qt6/qt6base: add support for concurrent module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 05/29] package/qt6/qt6base: add support for xml module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 06/29] package/qt6/qt6base: add support for test module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 07/29] package/qt6/qt6base: add support for dbus module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 08/29] package/qt6/qt6base: add support for syslog backend Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 09/29] package/qt6/qt6base: add qt support for journald when using systemd Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 10/29] package/qt6/qt6base: add qt support for zstd when using the package Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 11/29] package/qt6/qt6base: add qt support for SSE/AVX SIMD extensions Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 12/29] package/qt6/qt6base: add linking to libatomic Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 13/29] package/qt6/qt6base: add support to link qt to openssl Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 14/29] package/qt6/qt6base: add qt icu support Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 15/29] package/qt6/qt6base: add qt libudev support Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 16/29] package/qt6/qt6base: add qt libglib2 support Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 17/29] package/qt6/qt6base: add support for passing custom options Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 18/29] package/qt6/qt6base: add support for sql module w/ mysql Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 19/29] package/qt6/qt6base: add support for sql module w/ postgresql Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 20/29] package/qt6/qt6base: add support for sql module w/ sqlite Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 21/29] package/qt6/qt6base: add support for gui module Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 22/29] package/qt6/qt6base: add support for gui module fontconfig/harfbuzz Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 23/29] package/qt6/qt6base: Add support for gui module jpeg/png/gif image format Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 24/29] package/qt6/qt6base: add support for gui module widgets/opengl/graphics backends Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 25/29] package/qt6/qt6base: add support for gui module tslib Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 26/29] package/qt6/qt6base: add support for gui module libinput Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 27/29] package/qt6/qt6base: add support for gui module kms Jesse Van Gavere
2022-08-26 12:52 ` [Buildroot] [PATCH v3 28/29] package/qt6/qt6base: add support for gui module printsupport/cups Jesse Van Gavere
2022-08-26 12:52 ` Jesse Van Gavere [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220826125252.16782-30-jesseevg@gmail.com \
--to=jesseevg@gmail.com \
--cc=buildroot@buildroot.org \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox