Config.in 561 B

1234567891011121314
  1. config BR2_PACKAGE_LIBSIGC
  2. bool "libsigc++"
  3. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. help
  6. libsigc++ implements a typesafe callback system for standard
  7. C++. It allows you to define signals and to connect those
  8. signals to any callback function, either global or a member
  9. function, regardless of whether it is static or virtual.
  10. https://libsigcplusplus.github.io/libsigcplusplus/
  11. comment "libsigc++ needs a toolchain w/ C++, gcc >= 7"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_7