ab9aa9b062
Rework the selection of Qt options in the qwt package to make it easier to support other versions of Qt than just Qt4. Instead of depending on Qt options, we select the ones we need, and simply have a global "depends on BR2_PACKAGE_QT". This also allows to remove a comment that becomes useless. Signed-off-by: David Picard <davepiq@yahoo.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
616 B
Plaintext
27 lines
616 B
Plaintext
config BR2_PACKAGE_QWT
|
|
bool "qwt"
|
|
depends on BR2_PACKAGE_QT
|
|
select BR2_PACKAGE_QT_GUI_MODULE if BR2_PACKAGE_QT
|
|
help
|
|
Qwt is a graphics extension to the Qt GUI application
|
|
framework. It provides a 2D plotting widget and more.
|
|
|
|
http://qwt.sourceforge.net/
|
|
|
|
if BR2_PACKAGE_QWT
|
|
|
|
config BR2_PACKAGE_QWT_SVG
|
|
bool "SVG support"
|
|
select BR2_PACKAGE_QT_SVG if BR2_PACKAGE_QT
|
|
|
|
config BR2_PACKAGE_QWT_MATHML
|
|
bool "MathML support"
|
|
|
|
config BR2_PACKAGE_QWT_OPENGL
|
|
bool "OpenGL support"
|
|
depends on BR2_PACKAGE_HAS_LIBGLES
|
|
depends on BR2_PACKAGE_HAS_LIBEGL
|
|
select BR2_PACKAGE_QT_OPENGL_ES if BR2_PACKAGE_QT
|
|
|
|
endif
|