2001-05-04 19:34:59 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-04 19:34:59 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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
|
2002-12-12 02:13:33 +03:00
|
|
|
bool cmAddCustomTargetCommand::InitialPass(std::vector<std::string> const& args)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2001-05-04 23:50:26 +04:00
|
|
|
bool all = false;
|
|
|
|
|
2004-04-21 19:36:31 +04:00
|
|
|
if(args.size() < 1 )
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
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;
|
2002-03-06 02:41:24 +03:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-09-05 00:07:54 +04:00
|
|
|
++s; // move past args[0] as it is already to be used
|
2002-12-11 00:45:19 +03:00
|
|
|
if (args.size() >= 2)
|
2001-05-04 23:50:26 +04:00
|
|
|
{
|
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;
|
2003-11-13 22:45:40 +03:00
|
|
|
if(s != args.end() && *s != "DEPENDS")
|
2001-09-05 00:07:54 +04:00
|
|
|
{
|
2002-03-06 02:41:24 +03:00
|
|
|
command = *s;
|
2001-09-05 00:07:54 +04:00
|
|
|
++s;
|
|
|
|
}
|
2003-06-03 18:30:23 +04:00
|
|
|
for (;s != args.end() && *s != "DEPENDS"; ++s)
|
2001-06-26 21:23:55 +04:00
|
|
|
{
|
2001-09-05 00:07:54 +04:00
|
|
|
arguments += cmSystemTools::EscapeSpaces(s->c_str());
|
|
|
|
arguments += " ";
|
2001-06-26 21:23:55 +04:00
|
|
|
}
|
2003-06-03 18:30:23 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
// skip depends keyword
|
|
|
|
if (s != args.end())
|
|
|
|
{
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
while (s != args.end())
|
|
|
|
{
|
|
|
|
depends.push_back(*s);
|
|
|
|
++s;
|
|
|
|
}
|
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(),
|
2003-06-03 18:30:23 +04:00
|
|
|
arguments.c_str(), all, depends);
|
2001-05-04 23:50:26 +04:00
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|