From a289bc84c6fe4494ac3a60ca7084cfda3a3f1994 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Tue, 9 Feb 2021 08:51:37 +0100 Subject: [PATCH] Turn off the dbus examples for qmake-generated VS projects They cannot be built due to QTBUG-91033. Task-number: QTBUG-91033 Fixes: QTBUG-88758 Pick-to: 5.15 Change-Id: I6f75cac1b20208c7813addd1ebe578c9edae295a Reviewed-by: Christian Stenger --- examples/examples.pro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/examples.pro b/examples/examples.pro index 077e5828a93..fe6c6dc7d43 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -6,7 +6,9 @@ SUBDIRS = \ embedded \ qpa -qtHaveModule(dbus): SUBDIRS += dbus +!contains(TEMPLATE, "vc.*") { # QTBUG-91033 + qtHaveModule(dbus): SUBDIRS += dbus +} qtHaveModule(network): SUBDIRS += network qtHaveModule(testlib): SUBDIRS += qtestlib qtHaveModule(concurrent): SUBDIRS += qtconcurrent