2019-08-07 21:12:00 +02:00
|
|
|
config BR2_PACKAGE_SDBUSPLUS
|
|
|
|
bool "sdbusplus"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_PACKAGE_SYSTEMD
|
2020-03-26 21:38:20 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
2019-08-07 21:12:00 +02:00
|
|
|
help
|
|
|
|
A C++ library for sd-bus with a bindings and doc generator.
|
|
|
|
|
|
|
|
This will build the target library. See the host package for
|
|
|
|
the bindings and documentation generation program.
|
|
|
|
|
|
|
|
https://github.com/openbmc/sdbusplus
|
|
|
|
|
2020-03-26 21:38:20 +01:00
|
|
|
comment "sdbusplus needs systemd and a toolchain w/ C++, gcc >= 7"
|
|
|
|
depends on !BR2_PACKAGE_SYSTEMD || !BR2_INSTALL_LIBSTDCPP || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7
|