summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/platforms.pro
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@theqtcompany.com>2016-06-28 10:19:08 +0200
committerAndy Nichols <andy.nichols@qt.io>2016-06-28 10:18:45 +0000
commit1d9a31919916dc0d5dd695f6601774d9ac347b72 (patch)
tree7ca4bfcc3db44d2deb78d9af7322fcdf65b913db /src/plugins/platforms/platforms.pro
parent8d67ce3c6f6e8a89ebf640b7722c5812f3d80615 (diff)
Limit the number of targets the VNC platform plugin is be built for
The VNC platform plugin is a port from the 4.8 code, which only supported embedded Linux. Right now that is the only platform this is tested with so unless there is a need for other platforms to be hosting applications over VNC we should limit it to only being built on unix platforms that are not Android, or Darwin. Change-Id: I49407669ee8ca6e9e3ed95b5bb350c7730839cf8 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/plugins/platforms/platforms.pro')
-rw-r--r--src/plugins/platforms/platforms.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/platforms/platforms.pro b/src/plugins/platforms/platforms.pro
index 5693909c3c..4bed5312ec 100644
--- a/src/plugins/platforms/platforms.pro
+++ b/src/plugins/platforms/platforms.pro
@@ -2,7 +2,7 @@ TEMPLATE = subdirs
android: SUBDIRS += android
-!android: SUBDIRS += minimal vnc
+!android: SUBDIRS += minimal
!android:if(!win32|contains(QT_CONFIG, freetype)): SUBDIRS += offscreen
@@ -35,6 +35,8 @@ contains(QT_CONFIG, directfb) {
contains(QT_CONFIG, linuxfb): SUBDIRS += linuxfb
+unix:!android:!darwin: SUBDIRS += vnc
+
freebsd {
SUBDIRS += bsdfb
}