Config.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. config BR2_PACKAGE_CWIID
  2. bool "cwiid"
  3. depends on !BR2_STATIC_LIBS # bluez5_utils
  4. depends on BR2_USE_WCHAR # bluez5_utils -> libglib2
  5. depends on BR2_TOOLCHAIN_HAS_THREADS # bluez5_utils -> dbus, alsa-lib, libglib2
  6. depends on BR2_USE_MMU # bluez5_utils -> dbus, libglib2
  7. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 # bluez5_utils hid plugin
  8. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # bluez5_utils
  9. select BR2_PACKAGE_BLUEZ5_UTILS
  10. select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID # runtime
  11. help
  12. A collection of Linux tools written in C for interfacing to
  13. the Nintendo Wiimote.
  14. https://github.com/abstrakraft/cwiid
  15. if BR2_PACKAGE_CWIID
  16. config BR2_PACKAGE_CWIID_WMGUI
  17. bool "wmgui"
  18. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2 -> pango -> harfbuzz
  19. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libgtk2 -> pango -> harfbuzz
  20. depends on BR2_PACKAGE_XORG7 # libgtk2
  21. depends on BR2_USE_WCHAR # libgtk2 -> libglib2
  22. depends on BR2_TOOLCHAIN_HAS_THREADS # libgtk2 -> libglib2
  23. depends on BR2_USE_MMU # libgtk2 -> libglib2
  24. depends on BR2_INSTALL_LIBSTDCPP # libgtk2 -> pango
  25. select BR2_PACKAGE_LIBGLIB2
  26. select BR2_PACKAGE_LIBGTK2
  27. endif
  28. comment "cwiid needs a toolchain w/ dynamic lib, threads, wchar, headers >= 3.18"
  29. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  30. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || \
  31. !BR2_TOOLCHAIN_HAS_THREADS || \
  32. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  33. depends on BR2_USE_MMU