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