12345678910111213141516 |
- config BR2_PACKAGE_SDBUS_CPP
- bool "sdbus-c++"
- depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_PACKAGE_SYSTEMD
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
- help
- sdbus-c++ is a high-level C++ D-Bus library for Linux
- designed to provide expressive, easy-to-use API in modern C++.
- This will build the target library.
- https://github.com/Kistler-Group/sdbus-cpp
- comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|