diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-01-05 22:27:14 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-07-18 09:53:46 (GMT) |
commit | 316e40baec978980c9023532f4dade1e5ea0ad48 (patch) | |
tree | 2580b61452ff3cc4fd3b6853d8a0ae9721d700e2 /Source/cmInstallProgramsCommand.h | |
parent | 7bc88b91655b3397054d26f519548f34068ad830 (diff) | |
download | CMake-316e40baec978980c9023532f4dade1e5ea0ad48.zip CMake-316e40baec978980c9023532f4dade1e5ea0ad48.tar.gz CMake-316e40baec978980c9023532f4dade1e5ea0ad48.tar.bz2 |
cmInstallProgramsCommand: Port away from FinalPass
Diffstat (limited to 'Source/cmInstallProgramsCommand.h')
-rw-r--r-- | Source/cmInstallProgramsCommand.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h index 3242365..ccd621d 100644 --- a/Source/cmInstallProgramsCommand.h +++ b/Source/cmInstallProgramsCommand.h @@ -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 |