summaryrefslogtreecommitdiffstats
path: root/src/plugins/graphicssystems/graphicssystems.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/graphicssystems/graphicssystems.pro')
-rw-r--r--src/plugins/graphicssystems/graphicssystems.pro16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/plugins/graphicssystems/graphicssystems.pro b/src/plugins/graphicssystems/graphicssystems.pro
index 14e3cfcb03..12b2c518b7 100644
--- a/src/plugins/graphicssystems/graphicssystems.pro
+++ b/src/plugins/graphicssystems/graphicssystems.pro
@@ -1,9 +1,23 @@
TEMPLATE = subdirs
SUBDIRS += trace
contains(QT_CONFIG, opengl):SUBDIRS += opengl
-contains(QT_CONFIG, openvg):contains(QT_CONFIG, egl):SUBDIRS += openvg
+contains(QT_CONFIG, openvg):contains(QT_CONFIG, egl) {
+ embedded_lite {
+ SUBDIRS += openvglite
+ } else {
+ SUBDIRS += openvg
+ }
+}
contains(QT_CONFIG, shivavg) {
# Only works under X11 at present
!win32:!embedded:!mac:SUBDIRS += shivavg
}
+
+embedded_lite: {
+ SUBDIRS += minimal
+}
+
+embedded_lite:x11 {
+ SUBDIRS += linuxfb
+} \ No newline at end of file