2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-04-11 22:59:02 +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-04-11 22:59:02 +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-04-11 22:59:02 +04:00
|
|
|
#include "cmCustomCommand.h"
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand()
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2006-09-29 00:40:35 +04:00
|
|
|
this->HaveComment = false;
|
2006-09-27 21:43:46 +04:00
|
|
|
this->EscapeOldStyle = true;
|
|
|
|
this->EscapeAllowMakeVars = false;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
|
2006-04-11 19:06:19 +04:00
|
|
|
Outputs(r.Outputs),
|
2006-03-15 19:02:08 +03:00
|
|
|
Depends(r.Depends),
|
|
|
|
CommandLines(r.CommandLines),
|
2006-09-29 00:40:35 +04:00
|
|
|
HaveComment(r.HaveComment),
|
2006-03-15 19:02:08 +03:00
|
|
|
Comment(r.Comment),
|
2006-09-27 23:26:03 +04:00
|
|
|
WorkingDirectory(r.WorkingDirectory),
|
2006-09-28 00:20:47 +04:00
|
|
|
EscapeAllowMakeVars(r.EscapeAllowMakeVars),
|
|
|
|
EscapeOldStyle(r.EscapeOldStyle)
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2006-04-11 19:06:19 +04:00
|
|
|
cmCustomCommand::cmCustomCommand(const std::vector<std::string>& outputs,
|
2005-02-22 18:32:44 +03:00
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommandLines& commandLines,
|
2006-09-29 00:40:35 +04:00
|
|
|
const char* comment,
|
2006-03-10 21:06:26 +03:00
|
|
|
const char* workingDirectory):
|
2006-04-11 19:06:19 +04:00
|
|
|
Outputs(outputs),
|
2006-03-15 19:02:08 +03:00
|
|
|
Depends(depends),
|
|
|
|
CommandLines(commandLines),
|
2006-09-29 00:40:35 +04:00
|
|
|
HaveComment(comment?true:false),
|
2006-03-15 19:02:08 +03:00
|
|
|
Comment(comment?comment:""),
|
2006-09-29 00:40:35 +04:00
|
|
|
WorkingDirectory(workingDirectory?workingDirectory:""),
|
|
|
|
EscapeAllowMakeVars(false),
|
2008-06-03 00:45:07 +04:00
|
|
|
EscapeOldStyle(true)
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2008-06-03 00:45:07 +04:00
|
|
|
this->EscapeOldStyle = true;
|
|
|
|
this->EscapeAllowMakeVars = false;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2006-04-11 19:06:19 +04:00
|
|
|
const std::vector<std::string>& cmCustomCommand::GetOutputs() const
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2006-04-11 19:06:19 +04:00
|
|
|
return this->Outputs;
|
2005-02-22 18:32:44 +03:00
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2006-02-08 18:58:36 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetWorkingDirectory() const
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->WorkingDirectory.size() == 0)
|
2006-02-08 18:58:36 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->WorkingDirectory.c_str();
|
2006-02-08 18:58:36 +03:00
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<std::string>& cmCustomCommand::GetDepends() const
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->Depends;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
2003-06-04 21:42:42 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const cmCustomCommandLines& cmCustomCommand::GetCommandLines() const
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->CommandLines;
|
2005-02-22 18:32:44 +03:00
|
|
|
}
|
2003-06-04 21:42:42 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetComment() const
|
2003-06-04 21:42:42 +04:00
|
|
|
{
|
2006-09-29 00:40:35 +04:00
|
|
|
const char* no_comment = 0;
|
|
|
|
return this->HaveComment? this->Comment.c_str() : no_comment;
|
2003-06-04 21:42:42 +04:00
|
|
|
}
|
2006-09-27 21:43:46 +04:00
|
|
|
|
2006-10-04 23:24:26 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::AppendCommands(const cmCustomCommandLines& commandLines)
|
|
|
|
{
|
|
|
|
for(cmCustomCommandLines::const_iterator i=commandLines.begin();
|
|
|
|
i != commandLines.end(); ++i)
|
|
|
|
{
|
|
|
|
this->CommandLines.push_back(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::AppendDepends(const std::vector<std::string>& depends)
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::const_iterator i=depends.begin();
|
|
|
|
i != depends.end(); ++i)
|
|
|
|
{
|
|
|
|
this->Depends.push_back(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-27 21:43:46 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCustomCommand::GetEscapeOldStyle() const
|
|
|
|
{
|
|
|
|
return this->EscapeOldStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::SetEscapeOldStyle(bool b)
|
|
|
|
{
|
|
|
|
this->EscapeOldStyle = b;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCustomCommand::GetEscapeAllowMakeVars() const
|
|
|
|
{
|
|
|
|
return this->EscapeAllowMakeVars;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::SetEscapeAllowMakeVars(bool b)
|
|
|
|
{
|
|
|
|
this->EscapeAllowMakeVars = b;
|
|
|
|
}
|
2007-09-17 18:50:46 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::ImplicitDependsList const&
|
|
|
|
cmCustomCommand::GetImplicitDepends() const
|
|
|
|
{
|
|
|
|
return this->ImplicitDepends;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::SetImplicitDepends(ImplicitDependsList const& l)
|
|
|
|
{
|
|
|
|
this->ImplicitDepends = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmCustomCommand::AppendImplicitDepends(ImplicitDependsList const& l)
|
|
|
|
{
|
|
|
|
this->ImplicitDepends.insert(this->ImplicitDepends.end(),
|
|
|
|
l.begin(), l.end());
|
|
|
|
}
|