12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef cmAddCustomCommandCommand_h
- #define cmAddCustomCommandCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmAddCustomCommandCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmAddCustomCommandCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- protected:
- bool CheckOutputs(const std::vector<std::string>& outputs);
- };
- #endif
|