Config.in 825 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_QT5DECLARATIVE
  2. bool "qt5declarative"
  3. depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
  4. select BR2_PACKAGE_QT5BASE
  5. select BR2_PACKAGE_QT5BASE_GUI
  6. help
  7. Qt is a cross-platform application and UI framework for
  8. developers using C++.
  9. Qt Declarative module provides the Qt QML and Qt Quick
  10. modules for developing UIs with the QML language
  11. http://doc.qt.io/qt-5/qtqml-index.html
  12. http://doc.qt.io/qt-5/qtquick-index.html
  13. if BR2_PACKAGE_QT5DECLARATIVE
  14. comment "quick module needs an OpenGL-capable backend"
  15. depends on !BR2_PACKAGE_QT5_GL_AVAILABLE && !BR2_PACKAGE_QT5_VERSION_LATEST
  16. config BR2_PACKAGE_QT5DECLARATIVE_QUICK
  17. bool "quick module"
  18. depends on BR2_PACKAGE_QT5_GL_AVAILABLE || BR2_PACKAGE_QT5_VERSION_LATEST
  19. select BR2_PACKAGE_QT5BASE_OPENGL if BR2_PACKAGE_QT5_GL_AVAILABLE
  20. endif