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
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddCustomTargetCommand.h"
|
|
|
|
|
|
|
|
// cmAddCustomTargetCommand
|
2006-03-10 21:06:26 +03:00
|
|
|
bool cmAddCustomTargetCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args)
|
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)
|
|
|
|
{
|
|
|
|
int major = 0;
|
|
|
|
int minor = 0;
|
|
|
|
if(const char* versionValue =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY"))
|
|
|
|
{
|
|
|
|
sscanf(versionValue, "%d.%d", &major, &minor);
|
|
|
|
}
|
|
|
|
if(!major || major > 3 || (major == 2 && minor > 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
// Keep track of parser state.
|
|
|
|
enum tdoing {
|
|
|
|
doing_command,
|
2006-02-08 18:58:36 +03:00
|
|
|
doing_depends,
|
2006-09-28 19:30:49 +04:00
|
|
|
doing_working_directory,
|
2006-10-05 02:10:30 +04:00
|
|
|
doing_comment,
|
2006-09-28 19:30:49 +04:00
|
|
|
doing_verbatim
|
2005-02-22 18:32:44 +03:00
|
|
|
};
|
|
|
|
tdoing doing = doing_command;
|
|
|
|
|
|
|
|
// Look for the ALL option.
|
|
|
|
bool all = false;
|
|
|
|
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
|
|
|
{
|
|
|
|
all = true;
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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;
|
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
|
|
|
|
|
|
|
// Add the utility target to the makefile.
|
2006-09-28 19:30:49 +04:00
|
|
|
bool escapeOldStyle = !verbatim;
|
2006-09-28 21:55:26 +04:00
|
|
|
this->Makefile->AddUtilityCommand(args[0].c_str(), all,
|
2006-03-15 19:02:08 +03:00
|
|
|
working_directory.c_str(), depends,
|
2006-10-05 02:10:30 +04:00
|
|
|
commandLines, escapeOldStyle, comment);
|
2001-05-04 23:50:26 +04:00
|
|
|
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|