package/qt6/qt6base: add support for syslog backend
Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
4337d4b833
commit
c3c944e421
@ -35,6 +35,11 @@ config BR2_PACKAGE_QT6BASE_NETWORK
|
||||
help
|
||||
This options enables the Qt6Network library.
|
||||
|
||||
config BR2_PACKAGE_QT6BASE_SYSLOG
|
||||
bool "syslog support"
|
||||
help
|
||||
Logs to the standard UNIX logging mechanism.
|
||||
|
||||
config BR2_PACKAGE_QT6BASE_TEST
|
||||
bool "test module"
|
||||
help
|
||||
|
@ -111,5 +111,11 @@ else
|
||||
QT6BASE_CONF_OPTS += -DFEATURE_xml=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT6BASE_SYSLOG),y)
|
||||
QT6BASE_CONF_OPTS += -DFEATURE_syslog=ON
|
||||
else
|
||||
QT6BASE_CONF_OPTS += -DFEATURE_syslog=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
$(eval $(host-cmake-package))
|
||||
|
Loading…
Reference in New Issue
Block a user