Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. config BR2_PACKAGE_QT5_GL_AVAILABLE
  2. bool
  3. default y
  4. depends on BR2_PACKAGE_HAS_LIBGL || BR2_PACKAGE_HAS_LIBGLES
  5. config BR2_PACKAGE_QT5_JSCORE_AVAILABLE
  6. bool
  7. default y
  8. # Javascript engine is only available on certain architectures
  9. depends on BR2_arm || BR2_aarch64 || BR2_i386 || BR2_x86_64 || BR2_mipsel || BR2_arc
  10. # ARM needs BLX, so v5t+
  11. depends on !BR2_ARM_CPU_ARMV4
  12. comment "Qt5 needs host g++ >= 5.0, and a toolchain w/ gcc >= 5.0, wchar, NPTL, C++, dynamic library"
  13. depends on !BR2_ARM_CPU_ARMV4
  14. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  15. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
  16. !BR2_HOST_GCC_AT_LEAST_5 || !BR2_TOOLCHAIN_GCC_AT_LEAST_5
  17. menuconfig BR2_PACKAGE_QT5
  18. bool "Qt5"
  19. depends on BR2_INSTALL_LIBSTDCPP
  20. depends on BR2_USE_WCHAR
  21. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  22. depends on BR2_HOST_GCC_AT_LEAST_5 # Full C++11
  23. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
  24. depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
  25. depends on !BR2_STATIC_LIBS
  26. select BR2_PACKAGE_QT5BASE
  27. help
  28. This option enables the Qt5 framework. Sub-options allow to
  29. select which modules should be built.
  30. http://qt.io
  31. if BR2_PACKAGE_QT5
  32. source "package/qt5/qt53d/Config.in"
  33. source "package/qt5/qt5base/Config.in"
  34. source "package/qt5/qt5charts/Config.in"
  35. source "package/qt5/qt5coap/Config.in"
  36. source "package/qt5/qt5connectivity/Config.in"
  37. source "package/qt5/qt5declarative/Config.in"
  38. source "package/qt5/qt5doc/Config.in"
  39. source "package/qt5/qt5enginio/Config.in"
  40. source "package/qt5/qt5graphicaleffects/Config.in"
  41. source "package/qt5/qt5imageformats/Config.in"
  42. source "package/qt5/qt5knx/Config.in"
  43. source "package/qt5/qt5location/Config.in"
  44. source "package/qt5/qt5lottie/Config.in"
  45. source "package/qt5/qt5mqtt/Config.in"
  46. source "package/qt5/qt5multimedia/Config.in"
  47. source "package/qt5/qt5opcua/Config.in"
  48. source "package/qt5/qt5quickcontrols/Config.in"
  49. source "package/qt5/qt5quickcontrols2/Config.in"
  50. source "package/qt5/qt5quicktimeline/Config.in"
  51. source "package/qt5/qt5remoteobjects/Config.in"
  52. source "package/qt5/qt5script/Config.in"
  53. source "package/qt5/qt5scxml/Config.in"
  54. source "package/qt5/qt5sensors/Config.in"
  55. source "package/qt5/qt5serialbus/Config.in"
  56. source "package/qt5/qt5serialport/Config.in"
  57. source "package/qt5/qt5svg/Config.in"
  58. source "package/qt5/qt5tools/Config.in"
  59. source "package/qt5/qt5virtualkeyboard/Config.in"
  60. source "package/qt5/qt5wayland/Config.in"
  61. source "package/qt5/qt5webchannel/Config.in"
  62. source "package/qt5/qt5webkit/Config.in"
  63. source "package/qt5/qt5webengine/Config.in"
  64. source "package/qt5/qt5webengine-chromium/Config.in"
  65. source "package/qt5/qt5webengine-chromium-catapult/Config.in"
  66. source "package/qt5/qt5websockets/Config.in"
  67. source "package/qt5/qt5webview/Config.in"
  68. source "package/qt5/qt5x11extras/Config.in"
  69. source "package/qt5/qt5xmlpatterns/Config.in"
  70. endif