Config.in 521 B

12345678910111213141516
  1. config BR2_PACKAGE_LIBIQRF
  2. bool "libiqrf"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  5. select BR2_PACKAGE_LIBUSB
  6. help
  7. This library implement specific protocol
  8. which is used for communicating with iqrf devices
  9. (http://iqrf.org) over usb. For usb access is used
  10. libusb library.
  11. https://github.com/nandra/libiqrf
  12. comment "libiqrf needs a toolchain w/ threads, gcc >= 4.9"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9