Config.in 542 B

12345678910111213141516
  1. config 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_7 # C++17
  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. This will build the target library.
  10. https://github.com/Kistler-Group/sdbus-cpp
  11. comment "sdbus-c++ needs systemd and a toolchain w/ C++, gcc >= 7"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_SYSTEMD || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_7