5eb43c83c1
Qt Quick should no longer depend on opengl, and instead fallback to the limited functionality software renderer as a replacement [1] when not available. [1] http://blog.qt.io/blog/2016/08/15/the-qt-quick-graphics-stack-in-qt-5-8/ Cc: Peter Seiderer <ps.report@gmx.net> Cc: Julien Corjon <corjon.j@ecagroup.com> Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com> Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Tested-by: Peter Seiderer <ps.report@gmx.net> [Thomas: drop qt5declarative patch, since we have bumped to 5.9.3, which contains the patch.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
860 B
Plaintext
28 lines
860 B
Plaintext
config BR2_PACKAGE_QT5DECLARATIVE
|
|
bool "qt5declarative"
|
|
depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE
|
|
select BR2_PACKAGE_QT5XMLPATTERNS
|
|
select BR2_PACKAGE_QT5BASE
|
|
select BR2_PACKAGE_QT5BASE_GUI
|
|
help
|
|
Qt is a cross-platform application and UI framework for
|
|
developers using C++.
|
|
|
|
Qt Declarative module provides the Qt QML and Qt Quick
|
|
modules for developing UIs with the QML language
|
|
|
|
http://doc.qt.io/qt-5/qtqml-index.html
|
|
http://doc.qt.io/qt-5/qtquick-index.html
|
|
|
|
if BR2_PACKAGE_QT5DECLARATIVE
|
|
|
|
comment "quick module needs an OpenGL-capable backend"
|
|
depends on !BR2_PACKAGE_QT5_GL_AVAILABLE && !BR2_PACKAGE_QT5_VERSION_LATEST
|
|
|
|
config BR2_PACKAGE_QT5DECLARATIVE_QUICK
|
|
bool "quick module"
|
|
depends on BR2_PACKAGE_QT5_GL_AVAILABLE || BR2_PACKAGE_QT5_VERSION_LATEST
|
|
select BR2_PACKAGE_QT5BASE_OPENGL if BR2_PACKAGE_QT5_GL_AVAILABLE
|
|
|
|
endif
|