cmake/Source/cmCustomCommand.cxx

143 lines
3.2 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"
2020-02-01 23:06:01 +01:00
#include <utility>
2020-08-30 11:54:41 +02:00
#include <cmext/algorithm>
2011-01-16 11:35:12 +01:00
2020-08-30 11:54:41 +02:00
cmCustomCommand::cmCustomCommand(std::vector<std::string> outputs,
2019-11-11 23:01:05 +01:00
std::vector<std::string> byproducts,
std::vector<std::string> depends,
cmCustomCommandLines commandLines,
2020-08-30 11:54:41 +02:00
cmListFileBacktrace lfbt, const char* comment,
const char* workingDirectory,
bool stdPipesUTF8)
2019-11-11 23:01:05 +01:00
: Outputs(std::move(outputs))
, Byproducts(std::move(byproducts))
, Depends(std::move(depends))
, CommandLines(std::move(commandLines))
2020-08-30 11:54:41 +02:00
, Backtrace(std::move(lfbt))
2016-07-09 11:21:54 +02:00
, Comment(comment ? comment : "")
, WorkingDirectory(workingDirectory ? workingDirectory : "")
2018-01-26 17:06:56 +01:00
, HaveComment(comment != nullptr)
2020-08-30 11:54:41 +02:00
, StdPipesUTF8(stdPipesUTF8)
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)
{
2020-08-30 11:54:41 +02:00
cm::append(this->CommandLines, commandLines);
}
void cmCustomCommand::AppendDepends(const std::vector<std::string>& depends)
{
2020-08-30 11:54:41 +02:00
cm::append(this->Depends, depends);
}
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
}
2020-02-01 23:06:01 +01:00
cmImplicitDependsList const& cmCustomCommand::GetImplicitDepends() const
{
return this->ImplicitDepends;
}
2020-02-01 23:06:01 +01:00
void cmCustomCommand::SetImplicitDepends(cmImplicitDependsList const& l)
{
this->ImplicitDepends = l;
}
2020-02-01 23:06:01 +01:00
void cmCustomCommand::AppendImplicitDepends(cmImplicitDependsList const& l)
{
2020-08-30 11:54:41 +02:00
cm::append(this->ImplicitDepends, l);
}
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;
}
2019-11-11 23:01:05 +01:00
const std::string& cmCustomCommand::GetJobPool() const
{
return this->JobPool;
}
void cmCustomCommand::SetJobPool(const std::string& job_pool)
{
this->JobPool = job_pool;
}