cmake/Source/cmCustomCommand.cxx

149 lines
3.5 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCustomCommand.h"
2011-01-16 11:35:12 +01:00
#include "cmMakefile.h"
cmCustomCommand::cmCustomCommand()
2015-11-17 17:22:37 +01:00
: Backtrace()
{
this->HaveComment = false;
this->EscapeOldStyle = true;
this->EscapeAllowMakeVars = false;
2015-04-27 22:25:09 +02:00
this->UsesTerminal = false;
2017-04-14 19:02:05 +02:00
this->CommandExpandLists = false;
}
2014-08-03 19:52:23 +02:00
cmCustomCommand::cmCustomCommand(cmMakefile const* mf,
2011-01-16 11:35:12 +01:00
const std::vector<std::string>& outputs,
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& byproducts,
const std::vector<std::string>& depends,
const cmCustomCommandLines& commandLines,
const char* comment,
2016-07-09 11:21:54 +02:00
const char* workingDirectory)
: Outputs(outputs)
, Byproducts(byproducts)
, Depends(depends)
, CommandLines(commandLines)
, Backtrace()
, Comment(comment ? comment : "")
, WorkingDirectory(workingDirectory ? workingDirectory : "")
2018-01-26 17:06:56 +01:00
, HaveComment(comment != nullptr)
2016-07-09 11:21:54 +02:00
, EscapeAllowMakeVars(false)
, EscapeOldStyle(true)
2017-04-14 19:02:05 +02:00
, CommandExpandLists(false)
2016-07-09 11:21:54 +02:00
{
if (mf) {
2015-04-27 22:25:09 +02:00
this->Backtrace = mf->GetBacktrace();
2016-07-09 11:21:54 +02:00
}
2011-01-16 11:35:12 +01:00
}
const std::vector<std::string>& cmCustomCommand::GetOutputs() const
{
return this->Outputs;
}
2015-04-27 22:25:09 +02:00
const std::vector<std::string>& cmCustomCommand::GetByproducts() const
{
2015-04-27 22:25:09 +02:00
return this->Byproducts;
}
const std::vector<std::string>& cmCustomCommand::GetDepends() const
{
return this->Depends;
}
const cmCustomCommandLines& cmCustomCommand::GetCommandLines() const
{
return this->CommandLines;
}
const char* cmCustomCommand::GetComment() const
{
2018-01-26 17:06:56 +01:00
const char* no_comment = nullptr;
2016-07-09 11:21:54 +02:00
return this->HaveComment ? this->Comment.c_str() : no_comment;
}
void cmCustomCommand::AppendCommands(const cmCustomCommandLines& commandLines)
{
2016-07-09 11:21:54 +02:00
this->CommandLines.insert(this->CommandLines.end(), commandLines.begin(),
commandLines.end());
}
void cmCustomCommand::AppendDepends(const std::vector<std::string>& depends)
{
2015-04-27 22:25:09 +02:00
this->Depends.insert(this->Depends.end(), depends.begin(), depends.end());
}
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;
}
2011-01-16 11:35:12 +01:00
cmListFileBacktrace const& cmCustomCommand::GetBacktrace() const
{
2015-04-27 22:25:09 +02:00
return this->Backtrace;
2011-01-16 11:35:12 +01: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)
{
2016-07-09 11:21:54 +02:00
this->ImplicitDepends.insert(this->ImplicitDepends.end(), l.begin(),
l.end());
}
2015-04-27 22:25:09 +02:00
bool cmCustomCommand::GetUsesTerminal() const
{
return this->UsesTerminal;
}
void cmCustomCommand::SetUsesTerminal(bool b)
{
this->UsesTerminal = b;
}
2016-10-30 18:24:19 +01:00
2017-04-14 19:02:05 +02:00
bool cmCustomCommand::GetCommandExpandLists() const
{
return this->CommandExpandLists;
}
void cmCustomCommand::SetCommandExpandLists(bool b)
{
this->CommandExpandLists = b;
}
2016-10-30 18:24:19 +01:00
const std::string& cmCustomCommand::GetDepfile() const
{
return this->Depfile;
}
void cmCustomCommand::SetDepfile(const std::string& depfile)
{
this->Depfile = depfile;
}