38 lines
787 B
C++
38 lines
787 B
C++
#ifndef cmSourceFilesRule_h
|
|
#define cmSourceFilesRule_h
|
|
|
|
#include "cmStandardIncludes.h"
|
|
#include "cmRuleMaker.h"
|
|
|
|
|
|
class cmSourceFilesRule : public cmRuleMaker
|
|
{
|
|
public:
|
|
virtual cmRuleMaker* Clone()
|
|
{
|
|
return new cmSourceFilesRule;
|
|
}
|
|
// 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 "SOURCE_FILES";}
|
|
virtual const char* TerseDocumentaion()
|
|
{
|
|
return "Add a list of source files.";
|
|
}
|
|
|
|
// Return full documentation for the rule
|
|
virtual const char* FullDocumentaion()
|
|
{
|
|
return
|
|
"SOURCE_FILES(file1 file2 ...)";
|
|
}
|
|
};
|
|
|
|
|
|
|
|
#endif
|