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