aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-13 12:19:35 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-16 14:04:59 +0000
commit79f82d0d0ae9fffb4daebdc10bc1abe1761b99e1 (patch)
tree3ea76f0fada59fb3203240e8a05d39661cf62464 /src/plugins/projectexplorer/buildstep.h
parentcedf015c10cae35738ff7651389c660f101d0e98 (diff)
BuildManager: Provide context of earlier build steps to init
This information can be used to get information from earlier steps, which e.g. queried for android devices to deploy to. Change-Id: Iefe1c9443915cb6211f86f98ff7aaf3cb75145ba Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildstep.h')
-rw-r--r--src/plugins/projectexplorer/buildstep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index 43ae9aef02..a2f065da6f 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -56,7 +56,7 @@ protected:
BuildStep(BuildStepList *bsl, BuildStep *bs);
public:
- virtual bool init() = 0;
+ virtual bool init(QList<const BuildStep *> &earlierSteps) = 0;
virtual void run(QFutureInterface<bool> &fi) = 0;