Refactor: Allow cmInstallGenerator::Compute() to return an error

This is preparation for an upcoming merge request, which will add
a new cmInstallGenerator that returns false if there are errors in
the Compute() step.
This commit is contained in:
Kyle Edwards
2019-03-15 11:01:59 -04:00
parent 741fb95f66
commit b133d14fb1
16 changed files with 28 additions and 17 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ public:
const std::string& config,
NameType nameType = NameNormal);
void Compute(cmLocalGenerator* lg) override;
bool Compute(cmLocalGenerator* lg) override;
cmGeneratorTarget* GetTarget() const { return this->Target; }