cmake/Source/cmTargetCompileOptionsCommand.cxx

44 lines
1.3 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. */
2013-11-03 12:27:13 +02:00
#include "cmTargetCompileOptionsCommand.h"
2015-08-17 11:37:30 +02:00
#include "cmAlgorithms.h"
2016-07-09 11:21:54 +02:00
bool cmTargetCompileOptionsCommand::InitialPass(
std::vector<std::string> const& args, cmExecutionStatus&)
2013-11-03 12:27:13 +02:00
{
return this->HandleArguments(args, "COMPILE_OPTIONS", PROCESS_BEFORE);
}
2016-07-09 11:21:54 +02:00
void cmTargetCompileOptionsCommand::HandleImportedTarget(
const std::string& tgt)
2013-11-03 12:27:13 +02:00
{
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
e << "Cannot specify compile options for imported target \"" << tgt << "\".";
2013-11-03 12:27:13 +02:00
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
}
2016-07-09 11:21:54 +02:00
void cmTargetCompileOptionsCommand::HandleMissingTarget(
const std::string& name)
2013-11-03 12:27:13 +02:00
{
2015-04-27 22:25:09 +02:00
std::ostringstream e;
2016-07-09 11:21:54 +02:00
e << "Cannot specify compile options for target \"" << name
<< "\" "
2013-11-03 12:27:13 +02:00
"which is not built by this project.";
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
}
2016-07-09 11:21:54 +02:00
std::string cmTargetCompileOptionsCommand::Join(
const std::vector<std::string>& content)
2013-11-03 12:27:13 +02:00
{
2015-04-27 22:25:09 +02:00
return cmJoin(content, ";");
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
bool cmTargetCompileOptionsCommand::HandleDirectContent(
cmTarget* tgt, const std::vector<std::string>& content, bool, bool)
2013-11-03 12:27:13 +02:00
{
2015-04-27 22:25:09 +02:00
cmListFileBacktrace lfbt = this->Makefile->GetBacktrace();
2015-11-17 17:22:37 +01:00
tgt->InsertCompileOption(this->Join(content), lfbt);
2015-04-27 22:25:09 +02:00
return true;
2013-11-03 12:27:13 +02:00
}