2001-11-08 00:47:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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 "cmAddCustomCommandCommand.h"
|
|
|
|
|
|
|
|
|
|
|
|
// cmAddCustomCommandCommand
|
|
|
|
bool cmAddCustomCommandCommand::InitialPass(std::vector<std::string> const& argsIn)
|
|
|
|
{
|
2001-11-08 22:34:51 +03:00
|
|
|
if (argsIn.size() < 6)
|
2001-11-08 00:47:38 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with wrong number of arguments.");
|
|
|
|
return false;
|
|
|
|
}
|
2001-11-08 22:34:51 +03:00
|
|
|
|
2001-11-08 00:47:38 +03:00
|
|
|
std::vector<std::string> args = argsIn;
|
|
|
|
|
|
|
|
if(args[2] != "ARGS")
|
|
|
|
{
|
|
|
|
this->SetError("Wrong syntax. The third argument should be ARGS");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int cc=3;
|
2001-11-08 22:34:51 +03:00
|
|
|
|
|
|
|
std::vector<std::string> commandArgs;
|
2001-11-08 00:47:38 +03:00
|
|
|
while(args[cc] != "DEPENDS" && cc < argsIn.size())
|
|
|
|
{
|
2001-11-08 22:34:51 +03:00
|
|
|
m_Makefile->ExpandVariablesInString(args[cc]);
|
2001-11-08 00:47:38 +03:00
|
|
|
commandArgs.push_back(args[cc]);
|
|
|
|
cc++;
|
|
|
|
}
|
2001-11-08 22:34:51 +03:00
|
|
|
|
2001-11-08 00:47:38 +03:00
|
|
|
if(cc == argsIn.size()-1)
|
|
|
|
{
|
|
|
|
this->SetError("Wrong syntax. Missing DEPENDS.");
|
|
|
|
return false;
|
|
|
|
}
|
2001-11-08 22:34:51 +03:00
|
|
|
cc++ ; // Skip DEPENDS
|
|
|
|
|
|
|
|
std::vector<std::string> depends;
|
2001-11-08 00:47:38 +03:00
|
|
|
while(args[cc] != "OUTPUTS" && cc < argsIn.size())
|
|
|
|
{
|
2001-11-08 22:34:51 +03:00
|
|
|
m_Makefile->ExpandVariablesInString(args[cc]);
|
2001-11-08 00:47:38 +03:00
|
|
|
depends.push_back(args[cc]);
|
|
|
|
cc++;
|
|
|
|
}
|
2001-11-08 22:34:51 +03:00
|
|
|
|
2001-11-08 00:47:38 +03:00
|
|
|
if(cc == argsIn.size()-1)
|
|
|
|
{
|
|
|
|
this->SetError("Wrong syntax. Missing OUTPUTS.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cc ++; // Skip OUTPUTS
|
2001-11-08 22:34:51 +03:00
|
|
|
|
|
|
|
std::vector<std::string> outputs;
|
2001-11-08 00:47:38 +03:00
|
|
|
while(cc < argsIn.size()-1)
|
|
|
|
{
|
2001-11-08 22:34:51 +03:00
|
|
|
m_Makefile->ExpandVariablesInString(args[cc]);
|
2001-11-08 00:47:38 +03:00
|
|
|
outputs.push_back(args[cc]);
|
|
|
|
cc++;
|
|
|
|
}
|
2001-11-08 22:34:51 +03:00
|
|
|
|
|
|
|
m_Makefile->ExpandVariablesInString(args[0]);
|
|
|
|
m_Makefile->ExpandVariablesInString(args[1]);
|
|
|
|
m_Makefile->ExpandVariablesInString(args[argsIn.size()-1]);
|
|
|
|
|
|
|
|
m_Makefile->AddCustomCommand(args[0].c_str(),
|
|
|
|
args[1].c_str(),
|
|
|
|
commandArgs,
|
|
|
|
depends,
|
|
|
|
outputs,
|
|
|
|
args[argsIn.size()-1].c_str());
|
2001-11-08 00:47:38 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|