12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef cmInstallProgramsCommand_h
- #define cmInstallProgramsCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmInstallProgramsCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmInstallProgramsCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
-
- 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
|