aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/rulesapplicator.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-04-26 11:43:04 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-04-26 12:33:01 +0000
commitf3a64535fcc0b83751933d8149f9de035d55d605 (patch)
treeb47f9df70f02b42ca09134ec50ac92bc4be2aca9 /src/lib/corelib/buildgraph/rulesapplicator.cpp
parent2558aab4de3ee1b0995ed2f32fdb51bef71987d7 (diff)
Print debug output when the project's "dirty" flag is written
Change-Id: I67bac50beea4efb572b3299137ef52dc725647ee Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/rulesapplicator.cpp')
-rw-r--r--src/lib/corelib/buildgraph/rulesapplicator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/rulesapplicator.cpp b/src/lib/corelib/buildgraph/rulesapplicator.cpp
index 3f4859d7c..72ec2fad3 100644
--- a/src/lib/corelib/buildgraph/rulesapplicator.cpp
+++ b/src/lib/corelib/buildgraph/rulesapplicator.cpp
@@ -97,7 +97,7 @@ void RulesApplicator::applyRule(const RuleConstPtr &rule, const ArtifactSet &inp
if (inputArtifacts.empty() && rule->declaresInputs() && rule->requiresInputs)
return;
- m_product->topLevelProject()->buildData->isDirty = true;
+ m_product->topLevelProject()->buildData->setDirty();
m_createdArtifacts.clear();
m_invalidatedArtifacts.clear();
RulesEvaluationContext::Scope s(evalContext().get());