aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rulenode.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-07-12 10:16:03 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-07-12 10:16:03 +0200
commitc45cd4a943dfbbc9c54f65ec2ab5250e9b5ba1cb (patch)
tree88031e0928c9b4b0bf01d72a89c90f3e1406c593 /src/lib/corelib/buildgraph/rulenode.cpp
parentadcadd2a06b906685bf0a2687dd5ab902f3b0ebf (diff)
parent2440b19b288096e1601674de2ac15c560af469cd (diff)
Merge 1.12 into master
Diffstat (limited to 'src/lib/corelib/buildgraph/rulenode.cpp')
-rw-r--r--src/lib/corelib/buildgraph/rulenode.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/rulenode.cpp b/src/lib/corelib/buildgraph/rulenode.cpp
index 359054704..b3fc56031 100644
--- a/src/lib/corelib/buildgraph/rulenode.cpp
+++ b/src/lib/corelib/buildgraph/rulenode.cpp
@@ -217,6 +217,8 @@ ArtifactSet RuleNode::currentInputArtifacts() const
// This can e.g. happen for the ["cpp", "hpp"] -> ["hpp", "cpp", "unmocable"] rule.
continue;
}
+ if (artifact->fileTags().intersects(m_rule->excludedInputs))
+ continue;
s += artifact;
}
}