summaryrefslogtreecommitdiff
path: root/share/qbs/module-providers/Qt/templates/qml.qbs
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2021-06-18 16:41:37 +0200
committerMitch Curtis <mitch.curtis@qt.io>2021-06-28 10:18:04 +0000
commit1e518097fa5ad72ccca9b1e47432501857cf77fc (patch)
tree6b009eb3177fe9ab1ecdd9d872b53e466a0b38ed /share/qbs/module-providers/Qt/templates/qml.qbs
parent2a745bf0ff79c2a949d2ae4bd95c84e7f00ab302 (diff)
downloadqbs-1e518097fa5ad72ccca9b1e47432501857cf77fc.tar.gz
Account for more QML-related binaries being in libexec
This amends b69b569ff43299dec625d573b08fec642039afea. Task-number: QBS-1636 Change-Id: I9d113d735ad0f9d4e517a675d9af9d3f0a25b802 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'share/qbs/module-providers/Qt/templates/qml.qbs')
-rw-r--r--share/qbs/module-providers/Qt/templates/qml.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/module-providers/Qt/templates/qml.qbs b/share/qbs/module-providers/Qt/templates/qml.qbs
index 104e6848f..9b4dfa36c 100644
--- a/share/qbs/module-providers/Qt/templates/qml.qbs
+++ b/share/qbs/module-providers/Qt/templates/qml.qbs
@@ -107,7 +107,7 @@ QtModule {
args.push("--foreign-types=" + foreignTypes.join(","));
args.push("-o", outputs.cpp[0].filePath);
args = args.concat(inputs["qt.core.metatypes"].map(filePathFromArtifact));
- var cmd = new Command(product.Qt.core.binPath + "/qmltyperegistrar", args);
+ var cmd = new Command(product.Qt.core.qmlLibExecPath + "/qmltyperegistrar", args);
cmd.description = "running qmltyperegistrar";
cmd.highlight = "codegen";
return cmd;