summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallFilesCommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-28 23:44:44 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-07-18 09:53:46 (GMT)
commit7bc88b91655b3397054d26f519548f34068ad830 (patch)
tree541ce7368822cf30b21ef945776354dfe3360a18 /Source/cmInstallFilesCommand.h
parent6a1a3763eea8f1bd2a6ca444c02af30d300cacc0 (diff)
downloadCMake-7bc88b91655b3397054d26f519548f34068ad830.zip
CMake-7bc88b91655b3397054d26f519548f34068ad830.tar.gz
CMake-7bc88b91655b3397054d26f519548f34068ad830.tar.bz2
cmInstallFilesCommand: Port away from FinalPass
Diffstat (limited to 'Source/cmInstallFilesCommand.h')
-rw-r--r--Source/cmInstallFilesCommand.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h
index e068b0e..f9b84fd 100644
--- a/Source/cmInstallFilesCommand.h
+++ b/Source/cmInstallFilesCommand.h
@@ -37,25 +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 !this->IsFilesForm; }
-
-protected:
- void CreateInstallGenerator() const;
- std::string FindInstallSource(const char* name) const;
-
-private:
- std::vector<std::string> FinalArgs;
- bool IsFilesForm = false;
- std::string Destination;
- std::vector<std::string> Files;
};
#endif