From 1e518097fa5ad72ccca9b1e47432501857cf77fc Mon Sep 17 00:00:00 2001 From: Mitch Curtis Date: Fri, 18 Jun 2021 16:41:37 +0200 Subject: Account for more QML-related binaries being in libexec This amends b69b569ff43299dec625d573b08fec642039afea. Task-number: QBS-1636 Change-Id: I9d113d735ad0f9d4e517a675d9af9d3f0a25b802 Reviewed-by: Christian Kandeler --- share/qbs/module-providers/Qt/templates/qml.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share/qbs/module-providers/Qt/templates/qml.qbs') 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; -- cgit v1.2.1