cmInstallProgramsCommand: Port away from FinalPass

This commit is contained in:
Daniel Pfeifer
2017-01-05 23:27:14 +01:00
committed by Regina Pfeifer
parent 7bc88b9165
commit 316e40baec
2 changed files with 29 additions and 40 deletions
-18
View File
@@ -37,24 +37,6 @@ public:
*/
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
/**
* This is called at the end after all the information
* specified by the command is accumulated. Most commands do
* not implement this method. At this point, reading and
* writing to the cache can be done.
*/
void FinalPass() override;
bool HasFinalPass() const override { return true; }
protected:
std::string FindInstallSource(const char* name) const;
private:
std::vector<std::string> FinalArgs;
std::string Destination;
std::vector<std::string> Files;
};
#endif