1config BR2_PACKAGE_QT5DECLARATIVE 2 bool "qt5declarative" 3 depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE 4 help 5 Qt is a cross-platform application and UI framework for 6 developers using C++. 7 8 Qt Declarative module provides the Qt QML and Qt Quick 9 modules for developing UIs with the QML language 10 11 https://doc.qt.io/qt-5/qtqml-index.html 12 https://doc.qt.io/qt-5/qtquick-index.html 13 14if BR2_PACKAGE_QT5DECLARATIVE 15 16config BR2_PACKAGE_QT5DECLARATIVE_QUICK 17 bool "quick module" 18 select BR2_PACKAGE_QT5BASE_GUI 19 select BR2_PACKAGE_QT5BASE_OPENGL if BR2_PACKAGE_QT5_GL_AVAILABLE 20 21config BR2_PACKAGE_QT5DECLARATIVE_SOFTWARE_BACKEND 22 bool "software backend" 23 # Prefer software backend over mesa3d 24 default y if BR2_PACKAGE_MESA3D_OPENGL_ES 25 26endif 27