From f019dd14e038e300cd82b4cea8fc5c44e623db4d Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 4 Apr 2023 13:46:31 +0200 Subject: [PATCH] qbs build: Fix qtc module There should be no symbol "Qt" in that module's scope; it's a qbs bug this worked so far. Change-Id: Iddf69669656b41fa7a7a96b2fae4f6584275812d Reviewed-by: Christian Stenger --- qbs/modules/qtc/qtc.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs index ee5e0bb6b59..c37e05ce9dd 100644 --- a/qbs/modules/qtc/qtc.qbs +++ b/qbs/modules/qtc/qtc.qbs @@ -100,7 +100,7 @@ Module { Properties { condition: cpp.present && qbs.toolchain.contains("msvc") && product.Qt - && Utilities.versionCompare(Qt.core.version, "6.3") >= 0 + && Utilities.versionCompare(product.Qt.core.version, "6.3") >= 0 && Utilities.versionCompare(cpp.compilerVersion, "19.10") >= 0 && Utilities.versionCompare(qbs.version, "1.23") < 0 cpp.cxxFlags: "/permissive-"