aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/Exporter/qbs/qbsexporter.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/Exporter/qbs/qbsexporter.qbs')
-rw-r--r--share/qbs/modules/Exporter/qbs/qbsexporter.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/share/qbs/modules/Exporter/qbs/qbsexporter.qbs b/share/qbs/modules/Exporter/qbs/qbsexporter.qbs
index 6cdc55891..351edfefe 100644
--- a/share/qbs/modules/Exporter/qbs/qbsexporter.qbs
+++ b/share/qbs/modules/Exporter/qbs/qbsexporter.qbs
@@ -49,7 +49,9 @@ Module {
requiresInputs: false
// Make sure we only run when all other artifacts are already present.
- inputs: product.type.filter(function(t) { return t !== "Exporter.qbs.module"; })
+ // TODO: This also matches target artifacts in dependencies. Should not hurt,
+ // but might be a hint that we should have auxiliaryInputsFromDependencies.
+ auxiliaryInputs: product.type.filter(function(t) { return t !== "Exporter.qbs.module"; })
Artifact {
filePath: product.Exporter.qbs.fileName