summaryrefslogtreecommitdiffstats
path: root/Source/cmTestsRule.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTestsRule.h')
-rw-r--r--Source/cmTestsRule.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/Source/cmTestsRule.h b/Source/cmTestsRule.h
new file mode 100644
index 0000000..4bcbd4a
--- /dev/null
+++ b/Source/cmTestsRule.h
@@ -0,0 +1,37 @@
+#ifndef cmTestsRule_h
+#define cmTestsRule_h
+
+#include "cmStandardIncludes.h"
+#include "cmRuleMaker.h"
+
+
+class cmTestsRule : public cmRuleMaker
+{
+public:
+ virtual cmRuleMaker* Clone()
+ {
+ return new cmTestsRule;
+ }
+ // This is called when the rule is firt encountered in
+ // the input file
+ virtual bool Invoke(std::vector<std::string>& args);
+ virtual void FinalPass() { }
+
+ // This is the name used in the input file.
+ virtual const char* GetName() { return "TESTS";}
+ virtual const char* TerseDocumentaion()
+ {
+ return "Add a list of executables files that are run as tests.";
+ }
+
+ // Return full documentation for the rule
+ virtual const char* FullDocumentaion()
+ {
+ return
+ "TESTS(file1 file2 ...)";
+ }
+};
+
+
+
+#endif