1config BR2_PACKAGE_SDBUS_CPP 2 bool "sdbus-c++" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_PACKAGE_SYSTEMD 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++20 6 help 7 sdbus-c++ is a high-level C++ D-Bus library for Linux 8 designed to provide expressive, easy-to-use API in modern C++. 9 10 This will build the target library. 11 12 https://github.com/Kistler-Group/sdbus-cpp 13 14comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 8" 15 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_8 17