2019-04-27 16:03:35 +02:00
|
|
|
config BR2_PACKAGE_SPDLOG
|
|
|
|
bool "spdlog"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2019-10-04 10:39:13 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2019-04-27 16:03:35 +02:00
|
|
|
depends on BR2_USE_WCHAR # fmt
|
|
|
|
select BR2_PACKAGE_FMT
|
|
|
|
help
|
|
|
|
Very fast, header only, C++ logging library.
|
|
|
|
|
|
|
|
https://github.com/gabime/spdlog
|
|
|
|
|
2019-10-04 10:39:13 +02:00
|
|
|
comment "spdlog needs a toolchain w/ C++, threads, wchar"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|
|
|| !BR2_USE_WCHAR
|