Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-filesystem
  8. depends on BR2_USE_MMU
  9. depends on BR2_INSTALL_LIBSTDCPP
  10. # libsigrok->libzip
  11. depends on !BR2_STATIC_LIBS
  12. # libsigrok
  13. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7
  14. depends on BR2_HOST_GCC_AT_LEAST_4_9
  15. depends on BR2_ENABLE_LOCALE
  16. select BR2_PACKAGE_LIBSIGROK
  17. select BR2_PACKAGE_LIBSIGROKCXX
  18. select BR2_PACKAGE_QT5BASE_WIDGETS
  19. select BR2_PACKAGE_QT5BASE_PNG
  20. select BR2_PACKAGE_QT5SVG
  21. select BR2_PACKAGE_QT5TOOLS
  22. select BR2_PACKAGE_QT5TOOLS_LINGUIST_TOOLS
  23. select BR2_PACKAGE_BOOST
  24. select BR2_PACKAGE_BOOST_FILESYSTEM
  25. select BR2_PACKAGE_BOOST_SYSTEM
  26. select BR2_PACKAGE_BOOST_SERIALIZATION
  27. help
  28. PulseView is a Qt based logic analyzer, oscilloscope
  29. and MSO GUI for sigrok.
  30. http://sigrok.org/wiki/PulseView
  31. comment "pulseview needs a toolchain w/ locale, wchar, threads, dynamic library, C++, gcc >= 7, host gcc >= 4.9"
  32. depends on BR2_USE_MMU
  33. depends on BR2_PACKAGE_QT5
  34. depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
  35. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_USE_WCHAR \
  36. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP \
  37. || BR2_STATIC_LIBS || !BR2_ENABLE_LOCALE || \
  38. !BR2_HOST_GCC_AT_LEAST_4_9