2001-05-04 19:34:59 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddCustomTargetCommand.h"
|
|
|
|
|
|
|
|
// cmAddCustomTargetCommand
|
2001-09-20 23:08:30 +04:00
|
|
|
bool cmAddCustomTargetCommand::InitialPass(std::vector<std::string> const& argsIn)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2001-09-20 23:08:30 +04:00
|
|
|
std::vector<std::string> args = argsIn;
|
2001-05-04 23:50:26 +04:00
|
|
|
bool all = false;
|
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_Makefile->ExpandVariablesInString(args[0]);
|
2001-05-04 23:50:26 +04:00
|
|
|
|
2001-06-26 21:23:55 +04:00
|
|
|
// all target option
|
2001-09-05 00:07:54 +04:00
|
|
|
std::string arguments;
|
2001-06-26 21:23:55 +04:00
|
|
|
std::vector<std::string>::iterator s = args.begin();
|
2001-09-05 00:07:54 +04:00
|
|
|
++s; // move past args[0] as it is already to be used
|
2001-05-04 23:50:26 +04:00
|
|
|
if (args.size() >= 3)
|
|
|
|
{
|
2001-06-26 21:23:55 +04:00
|
|
|
if (args[1] == "ALL")
|
2001-05-04 23:50:26 +04:00
|
|
|
{
|
|
|
|
all = true;
|
2001-09-05 00:07:54 +04:00
|
|
|
++s; // skip all
|
2001-05-04 23:50:26 +04:00
|
|
|
}
|
|
|
|
}
|
2001-09-05 00:07:54 +04:00
|
|
|
std::string command;
|
|
|
|
if(s != args.end())
|
|
|
|
{
|
|
|
|
command = m_Makefile->ExpandVariablesInString(*s);
|
|
|
|
++s;
|
|
|
|
}
|
2001-06-26 21:23:55 +04:00
|
|
|
for (;s != args.end(); ++s)
|
|
|
|
{
|
|
|
|
m_Makefile->ExpandVariablesInString(*s);
|
2001-09-05 00:07:54 +04:00
|
|
|
arguments += cmSystemTools::EscapeSpaces(s->c_str());
|
|
|
|
arguments += " ";
|
2001-06-26 21:23:55 +04:00
|
|
|
}
|
2001-05-04 19:34:59 +04:00
|
|
|
m_Makefile->AddUtilityCommand(args[0].c_str(),
|
2001-09-05 00:07:54 +04:00
|
|
|
command.c_str(),
|
|
|
|
arguments.c_str(), all);
|
2001-05-04 23:50:26 +04:00
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|