summaryrefslogtreecommitdiffstats
path: root/Source/cmExecutablesCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmExecutablesCommand.cxx')
-rw-r--r--Source/cmExecutablesCommand.cxx35
1 files changed, 35 insertions, 0 deletions
diff --git a/Source/cmExecutablesCommand.cxx b/Source/cmExecutablesCommand.cxx
new file mode 100644
index 0000000..748705d
--- /dev/null
+++ b/Source/cmExecutablesCommand.cxx
@@ -0,0 +1,35 @@
+/*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+
+ Copyright (c) 2000 National Library of Medicine
+ All rights reserved.
+
+ See COPYRIGHT.txt for copyright details.
+
+=========================================================================*/
+#include "cmExecutablesCommand.h"
+
+// cmExecutableCommand
+bool cmExecutablesCommand::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;
+}
+