2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-05-04 19:34:59 +04:00
|
|
|
#include "cmAddCustomTargetCommand.h"
|
|
|
|
|
|
|
|
// cmAddCustomTargetCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmAddCustomTargetCommand
|
2008-03-07 16:40:36 +03:00
|
|
|
::InitialPass(std::vector<std::string> const& args,
|
2008-03-08 01:05:06 +03:00
|
|
|
cmExecutionStatus&)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
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
|
|
|
|
2006-09-13 19:39:46 +04:00
|
|
|
// Check the target name.
|
|
|
|
if(args[0].find_first_of("/\\") != args[0].npos)
|
|
|
|
{
|
2008-03-07 23:30:35 +03:00
|
|
|
if(!this->Makefile->NeedBackwardsCompatibility(2,2))
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "called with invalid target name \"" << args[0]
|
|
|
|
<< "\". Target names may not contain a slash. "
|
|
|
|
<< "Use ADD_CUSTOM_COMMAND to generate files. "
|
|
|
|
<< "Set CMAKE_BACKWARDS_COMPATIBILITY to 2.2 "
|
|
|
|
<< "or lower to skip this check.";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2006-09-13 19:39:46 +04:00
|
|
|
}
|
2008-03-07 23:30:35 +03:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
// Accumulate one command line at a time.
|
|
|
|
cmCustomCommandLine currentLine;
|
|
|
|
|
|
|
|
// Save all command lines.
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
|
|
|
|
// Accumulate dependencies.
|
|
|
|
std::vector<std::string> depends;
|
2006-02-08 18:58:36 +03:00
|
|
|
std::string working_directory;
|
2006-09-28 19:30:49 +04:00
|
|
|
bool verbatim = false;
|
2006-10-05 02:10:30 +04:00
|
|
|
std::string comment_buffer;
|
|
|
|
const char* comment = 0;
|
2008-10-09 19:01:23 +04:00
|
|
|
std::vector<std::string> sources;
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
// Keep track of parser state.
|
2008-03-07 23:30:35 +03:00
|
|
|
enum tdoing {
|
|
|
|
doing_command,
|
|
|
|
doing_depends,
|
|
|
|
doing_working_directory,
|
|
|
|
doing_comment,
|
2008-10-09 19:01:23 +04:00
|
|
|
doing_source,
|
2008-03-07 23:30:35 +03:00
|
|
|
doing_verbatim
|
|
|
|
};
|
2005-02-22 18:32:44 +03:00
|
|
|
tdoing doing = doing_command;
|
|
|
|
|
|
|
|
// Look for the ALL option.
|
2007-03-13 22:18:27 +03:00
|
|
|
bool excludeFromAll = true;
|
2005-02-22 18:32:44 +03:00
|
|
|
unsigned int start = 1;
|
|
|
|
if(args.size() > 1)
|
2001-05-04 23:50:26 +04:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
if(args[1] == "ALL")
|
2001-05-04 23:50:26 +04:00
|
|
|
{
|
2007-03-13 22:18:27 +03:00
|
|
|
excludeFromAll = false;
|
2005-02-22 18:32:44 +03:00
|
|
|
start = 2;
|
2001-05-04 23:50:26 +04:00
|
|
|
}
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
// Parse the rest of the arguments.
|
|
|
|
for(unsigned int j = start; j < args.size(); ++j)
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
std::string const& copy = args[j];
|
|
|
|
|
|
|
|
if(copy == "DEPENDS")
|
|
|
|
{
|
|
|
|
doing = doing_depends;
|
|
|
|
}
|
2006-02-08 23:37:54 +03:00
|
|
|
else if(copy == "WORKING_DIRECTORY")
|
2006-02-08 18:58:36 +03:00
|
|
|
{
|
|
|
|
doing = doing_working_directory;
|
|
|
|
}
|
2006-09-28 19:30:49 +04:00
|
|
|
else if(copy == "VERBATIM")
|
|
|
|
{
|
|
|
|
doing = doing_verbatim;
|
|
|
|
verbatim = true;
|
|
|
|
}
|
2006-10-05 02:10:30 +04:00
|
|
|
else if (copy == "COMMENT")
|
|
|
|
{
|
|
|
|
doing = doing_comment;
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
else if(copy == "COMMAND")
|
|
|
|
{
|
|
|
|
doing = doing_command;
|
|
|
|
|
|
|
|
// Save the current command before starting the next command.
|
|
|
|
if(!currentLine.empty())
|
|
|
|
{
|
|
|
|
commandLines.push_back(currentLine);
|
|
|
|
currentLine.clear();
|
|
|
|
}
|
|
|
|
}
|
2008-10-09 19:01:23 +04:00
|
|
|
else if(copy == "SOURCES")
|
|
|
|
{
|
|
|
|
doing = doing_source;
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (doing)
|
|
|
|
{
|
2006-02-08 18:58:36 +03:00
|
|
|
case doing_working_directory:
|
|
|
|
working_directory = copy;
|
|
|
|
break;
|
2005-02-22 18:32:44 +03:00
|
|
|
case doing_command:
|
|
|
|
currentLine.push_back(copy);
|
|
|
|
break;
|
|
|
|
case doing_depends:
|
|
|
|
depends.push_back(copy);
|
|
|
|
break;
|
2006-10-05 02:10:30 +04:00
|
|
|
case doing_comment:
|
|
|
|
comment_buffer = copy;
|
|
|
|
comment = comment_buffer.c_str();
|
|
|
|
break;
|
2008-10-09 19:01:23 +04:00
|
|
|
case doing_source:
|
|
|
|
sources.push_back(copy);
|
|
|
|
break;
|
2005-02-22 18:32:44 +03:00
|
|
|
default:
|
|
|
|
this->SetError("Wrong syntax. Unknown type of argument.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
|
2005-03-22 16:36:40 +03:00
|
|
|
std::string::size_type pos = args[0].find_first_of("#<>");
|
|
|
|
if(pos != args[0].npos)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "called with target name containing a \"" << args[0][pos]
|
|
|
|
<< "\". This character is not allowed.";
|
|
|
|
this->SetError(msg.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
// Store the last command line finished.
|
|
|
|
if(!currentLine.empty())
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLines.push_back(currentLine);
|
|
|
|
currentLine.clear();
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
|
2008-02-11 21:35:39 +03:00
|
|
|
// Enforce name uniqueness.
|
2008-02-12 01:33:46 +03:00
|
|
|
{
|
2008-02-11 21:35:39 +03:00
|
|
|
std::string msg;
|
2008-02-15 00:42:29 +03:00
|
|
|
if(!this->Makefile->EnforceUniqueName(args[0], msg, true))
|
2008-02-11 21:35:39 +03:00
|
|
|
{
|
|
|
|
this->SetError(msg.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2008-02-12 01:33:46 +03:00
|
|
|
}
|
2008-02-11 21:35:39 +03:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
// Add the utility target to the makefile.
|
2006-09-28 19:30:49 +04:00
|
|
|
bool escapeOldStyle = !verbatim;
|
2008-10-09 19:01:23 +04:00
|
|
|
cmTarget* target =
|
|
|
|
this->Makefile->AddUtilityCommand(args[0].c_str(), excludeFromAll,
|
|
|
|
working_directory.c_str(), depends,
|
|
|
|
commandLines, escapeOldStyle, comment);
|
|
|
|
|
|
|
|
// Add additional user-specified source files to the target.
|
|
|
|
target->AddSources(sources);
|
2001-05-04 23:50:26 +04:00
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|