Config.in 783 B

123456789101112131415161718192021222324
  1. comment "Qt5 needs a toolchain with WCHAR, IPv6, thread and C++ support"
  2. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
  3. menuconfig BR2_PACKAGE_QT5
  4. bool "Qt5"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_USE_WCHAR
  7. depends on BR2_INET_IPV6
  8. depends on BR2_TOOLCHAIN_HAS_THREADS
  9. depends on !BR2_PACKAGE_QT
  10. help
  11. This option enables the Qt5 framework. Sub-options allow to
  12. select which modules should be built.
  13. http://qt-project.org
  14. if BR2_PACKAGE_QT5
  15. source "package/qt5/qt5base/Config.in"
  16. source "package/qt5/qt5imageformats/Config.in"
  17. source "package/qt5/qt5jsbackend/Config.in"
  18. source "package/qt5/qt5script/Config.in"
  19. source "package/qt5/qt5svg/Config.in"
  20. source "package/qt5/qt5xmlpatterns/Config.in"
  21. endif