Config.in 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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
  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_arc
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  16. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || \
  17. !BR2_HOST_GCC_AT_LEAST_5 || !BR2_TOOLCHAIN_GCC_AT_LEAST_5
  18. menuconfig BR2_PACKAGE_QT5
  19. bool "Qt5"
  20. depends on BR2_INSTALL_LIBSTDCPP
  21. depends on BR2_USE_WCHAR
  22. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  23. depends on BR2_HOST_GCC_AT_LEAST_5 # Full C++11
  24. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11, GCC_BUG_57694
  25. depends on !BR2_ARM_CPU_ARMV4 # needs ARMv5+
  26. # no built-in double-conversion support
  27. depends on !BR2_arc
  28. depends on !BR2_STATIC_LIBS
  29. select BR2_PACKAGE_QT5BASE
  30. help
  31. This option enables the Qt5 framework. Sub-options allow to
  32. select which modules should be built.
  33. http://qt.io
  34. if BR2_PACKAGE_QT5
  35. source "package/qt5/qt53d/Config.in"
  36. source "package/qt5/qt5base/Config.in"
  37. source "package/qt5/qt5charts/Config.in"
  38. source "package/qt5/qt5connectivity/Config.in"
  39. source "package/qt5/qt5declarative/Config.in"
  40. source "package/qt5/qt5enginio/Config.in"
  41. source "package/qt5/qt5graphicaleffects/Config.in"
  42. source "package/qt5/qt5imageformats/Config.in"
  43. source "package/qt5/qt5location/Config.in"
  44. source "package/qt5/qt5lottie/Config.in"
  45. source "package/qt5/qt5multimedia/Config.in"
  46. source "package/qt5/qt5quickcontrols/Config.in"
  47. source "package/qt5/qt5quickcontrols2/Config.in"
  48. source "package/qt5/qt5quicktimeline/Config.in"
  49. source "package/qt5/qt5remoteobjects/Config.in"
  50. source "package/qt5/qt5script/Config.in"
  51. source "package/qt5/qt5scxml/Config.in"
  52. source "package/qt5/qt5sensors/Config.in"
  53. source "package/qt5/qt5serialbus/Config.in"
  54. source "package/qt5/qt5serialport/Config.in"
  55. source "package/qt5/qt5svg/Config.in"
  56. source "package/qt5/qt5tools/Config.in"
  57. source "package/qt5/qt5virtualkeyboard/Config.in"
  58. source "package/qt5/qt5wayland/Config.in"
  59. source "package/qt5/qt5webchannel/Config.in"
  60. source "package/qt5/qt5webkit/Config.in"
  61. source "package/qt5/qt5webkit-examples/Config.in"
  62. source "package/qt5/qt5webengine/Config.in"
  63. source "package/qt5/qt5websockets/Config.in"
  64. source "package/qt5/qt5webview/Config.in"
  65. source "package/qt5/qt5x11extras/Config.in"
  66. source "package/qt5/qt5xmlpatterns/Config.in"
  67. endif