123456789101112131415161718192021222324252627282930313233 |
- #ifndef cmSetTestsPropertiesCommand_h
- #define cmSetTestsPropertiesCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmMakefile;
- class cmSetTestsPropertiesCommand : public cmCommand
- {
- public:
- cmCommand* Clone() override { return new cmSetTestsPropertiesCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- static bool SetOneTest(const std::string& tname,
- std::vector<std::string>& propertyPairs,
- cmMakefile* mf, std::string& errors);
- };
- #endif
|