mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
12
package/log4qt/Config.in
Normal file
12
package/log4qt/Config.in
Normal file
@@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_LOG4QT
|
||||
bool "log4qt"
|
||||
depends on BR2_PACKAGE_QT5
|
||||
help
|
||||
Log4Qt is a C++ port of the Apache Software Foundation
|
||||
Log4j package using the Qt Framework. It is intended to be
|
||||
used by open source and commercial Qt projects.
|
||||
|
||||
https://github.com/MEONMedical/Log4Qt
|
||||
|
||||
comment "log4qt needs qt5"
|
||||
depends on !BR2_PACKAGE_QT5
|
||||
3
package/log4qt/log4qt.hash
Normal file
3
package/log4qt/log4qt.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 ff17b794ca7d5290a150a53f6272e6a30a7f4d942aa58298a8328bf10a65858a log4qt-1.5.1.tar.gz
|
||||
sha256 c6596eb7be8581c18be736c846fb9173b69eccf6ef94c5135893ec56bd92ba08 LICENSE
|
||||
31
package/log4qt/log4qt.mk
Normal file
31
package/log4qt/log4qt.mk
Normal file
@@ -0,0 +1,31 @@
|
||||
################################################################################
|
||||
#
|
||||
# log4qt
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LOG4QT_VERSION = 1.5.1
|
||||
LOG4QT_SITE = $(call github,MEONMedical,Log4Qt,v$(LOG4QT_VERSION))
|
||||
LOG4QT_DEPENDENCIES = qt5base
|
||||
LOG4QT_LICENSE = Apache-2.0
|
||||
LOG4QT_LICENSE_FILES = LICENSE
|
||||
LOG4QT_INSTALL_STAGING = YES
|
||||
|
||||
# Uses __atomic_fetch_add_4
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
LOG4QT_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_SQLITE_QT)$(BR2_PACKAGE_QT5BASE_SQLITE_SYSTEM),y)
|
||||
LOG4QT_CONF_OPTS += -DBUILD_WITH_DB_LOGGING=ON
|
||||
else
|
||||
LOG4QT_CONF_OPTS += -DBUILD_WITH_DB_LOGGING=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5BASE_NETWORK),y)
|
||||
LOG4QT_CONF_OPTS += -DBUILD_WITH_TELNET_LOGGING=ON
|
||||
else
|
||||
LOG4QT_CONF_OPTS += -DBUILD_WITH_TELNET_LOGGING=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user