diff options
Diffstat (limited to 'Source/cmTestsRule.cxx')
-rw-r--r-- | Source/cmTestsRule.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/cmTestsRule.cxx b/Source/cmTestsRule.cxx new file mode 100644 index 0000000..19b6b88 --- /dev/null +++ b/Source/cmTestsRule.cxx @@ -0,0 +1,20 @@ +#include "cmTestsRule.h" + +// cmExecutableRule +bool cmTestsRule::Invoke(std::vector<std::string>& args) +{ + if(args.size() < 1 ) + { + this->SetError("called with incorrect number of arguments"); + return false; + } + for(std::vector<std::string>::iterator i = args.begin(); + i != args.end(); ++i) + { + cmClassFile file; + file.SetName((*i).c_str(), m_Makefile->GetCurrentDirectory()); + m_Makefile->AddExecutable(file); + } + return true; +} + |