diff options
Diffstat (limited to 'Source/cmExecutablesRule.h')
-rw-r--r-- | Source/cmExecutablesRule.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Source/cmExecutablesRule.h b/Source/cmExecutablesRule.h new file mode 100644 index 0000000..88219f1 --- /dev/null +++ b/Source/cmExecutablesRule.h @@ -0,0 +1,37 @@ +#ifndef cmExecutablesRule_h +#define cmExecutablesRule_h + +#include "cmStandardIncludes.h" +#include "cmRuleMaker.h" + + +class cmExecutablesRule : public cmRuleMaker +{ +public: + virtual cmRuleMaker* Clone() + { + return new cmExecutablesRule; + } + // 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 "EXECUTABLES";} + virtual const char* TerseDocumentaion() + { + return "Add a list of executables files."; + } + + // Return full documentation for the rule + virtual const char* FullDocumentaion() + { + return + "EXECUTABLES(file1 file2 ...)"; + } +}; + + + +#endif |