summaryrefslogtreecommitdiffstats
path: root/Source/cmSubdirRule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSubdirRule.cxx')
-rw-r--r--Source/cmSubdirRule.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/cmSubdirRule.cxx b/Source/cmSubdirRule.cxx
new file mode 100644
index 0000000..fc6334e
--- /dev/null
+++ b/Source/cmSubdirRule.cxx
@@ -0,0 +1,18 @@
+#include "cmSubdirRule.h"
+
+// cmSubdirRule
+bool cmSubdirRule::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)
+ {
+ m_Makefile->AddSubDirectory((*i).c_str());
+ }
+ return true;
+}
+