2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2013-07-08 18:18:42 +00:00
|
|
|
#include "cmTargetSourcesCommand.h"
|
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "cmAlgorithms.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
class cmExecutionStatus;
|
2013-07-08 18:18:42 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmTargetSourcesCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2013-07-08 18:18:42 +00:00
|
|
|
{
|
|
|
|
return this->HandleArguments(args, "SOURCES");
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmTargetSourcesCommand::HandleImportedTarget(const std::string& tgt)
|
2013-07-08 18:18:42 +00:00
|
|
|
{
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream e;
|
2016-05-16 14:34:04 +00:00
|
|
|
e << "Cannot specify sources for imported target \"" << tgt << "\".";
|
2013-07-08 18:18:42 +00:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmTargetSourcesCommand::HandleMissingTarget(const std::string& name)
|
2013-07-08 18:18:42 +00:00
|
|
|
{
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream e;
|
2016-05-16 14:34:04 +00:00
|
|
|
e << "Cannot specify sources for target \"" << name
|
|
|
|
<< "\" "
|
2013-07-08 18:18:42 +00:00
|
|
|
"which is not built by this project.";
|
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
std::string cmTargetSourcesCommand::Join(
|
|
|
|
const std::vector<std::string>& content)
|
2013-07-08 18:18:42 +00:00
|
|
|
{
|
2015-01-07 07:58:51 +00:00
|
|
|
return cmJoin(content, ";");
|
2013-07-08 18:18:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmTargetSourcesCommand::HandleDirectContent(
|
|
|
|
cmTarget* tgt, const std::vector<std::string>& content, bool, bool)
|
2013-07-08 18:18:42 +00:00
|
|
|
{
|
|
|
|
tgt->AppendProperty("SOURCES", this->Join(content).c_str());
|
2013-11-08 23:18:35 +00:00
|
|
|
return true;
|
2013-07-08 18:18:42 +00:00
|
|
|
}
|