Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. config BR2_PACKAGE_PULSEVIEW
  2. bool "pulseview"
  3. depends on BR2_PACKAGE_QT5
  4. # libsigrok->libglib2:
  5. depends on BR2_USE_WCHAR
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_USE_MMU
  8. depends on BR2_INSTALL_LIBSTDCPP
  9. # libsigrok->libzip
  10. depends on !BR2_STATIC_LIBS
  11. # libsigrok
  12. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  13. depends on BR2_HOST_GCC_AT_LEAST_4_9
  14. depends on BR2_ENABLE_LOCALE
  15. select BR2_PACKAGE_LIBSIGROK
  16. select BR2_PACKAGE_LIBSIGROKCXX
  17. select BR2_PACKAGE_QT5BASE_WIDGETS
  18. select BR2_PACKAGE_QT5BASE_PNG
  19. select BR2_PACKAGE_QT5SVG
  20. select BR2_PACKAGE_BOOST
  21. select BR2_PACKAGE_BOOST_FILESYSTEM
  22. select BR2_PACKAGE_BOOST_SYSTEM
  23. select BR2_PACKAGE_BOOST_SERIALIZATION
  24. help
  25. PulseView is a Qt based logic analyzer, oscilloscope
  26. and MSO GUI for sigrok.
  27. http://sigrok.org/wiki/PulseView
  28. comment "pulseview needs a toolchain w/ locale, wchar, threads, dynamic library, C++, gcc >= 4.9, host gcc >= 4.9"
  29. depends on BR2_USE_MMU
  30. depends on BR2_PACKAGE_QT5
  31. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
  32. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
  33. || BR2_STATIC_LIBS || !BR2_ENABLE_LOCALE || \
  34. !BR2_HOST_GCC_AT_LEAST_4_9