diff options
author | Will Schroeder <will.schroeder@kitware.com> | 2001-01-18 16:20:24 (GMT) |
---|---|---|
committer | Will Schroeder <will.schroeder@kitware.com> | 2001-01-18 16:20:24 (GMT) |
commit | 658614ff6a14411e2a697fac1f1717a7f4370bf0 (patch) | |
tree | 42702fd2580f03b4553d385afeaf42608700758b /Source/cmExecutablesCommand.cxx | |
parent | cacd6d160410660bcbc27f02b267833448c1eef1 (diff) | |
download | CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.zip CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.gz CMake-658614ff6a14411e2a697fac1f1717a7f4370bf0.tar.bz2 |
ENH:Reworked CMake for consistency
Diffstat (limited to 'Source/cmExecutablesCommand.cxx')
-rw-r--r-- | Source/cmExecutablesCommand.cxx | 35 |
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; +} + |