summaryrefslogtreecommitdiff
path: root/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2023-04-04 13:46:31 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2023-04-04 12:25:19 +0000
commitf019dd14e038e300cd82b4cea8fc5c44e623db4d (patch)
tree504ad4e01628a57738d6d614c0a902aefbe3a413 /qbs
parent41c1b76af0aa88b4ccfcb6c0e034160e0ecb029f (diff)
downloadqt-creator-f019dd14e038e300cd82b4cea8fc5c44e623db4d.tar.gz
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 <christian.stenger@qt.io>
Diffstat (limited to 'qbs')
-rw-r--r--qbs/modules/qtc/qtc.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs
index ee5e0bb6b5..c37e05ce9d 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-"