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-05-16 13:20:16 +00:00
|
|
|
#include "cmTargetCompileOptionsCommand.h"
|
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2015-03-08 12:51:20 +00:00
|
|
|
#include "cmAlgorithms.h"
|
2016-10-19 06:54:18 +00:00
|
|
|
#include "cmListFileCache.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
class cmExecutionStatus;
|
2015-03-08 12:51:20 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmTargetCompileOptionsCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2013-05-16 13:20:16 +00:00
|
|
|
{
|
|
|
|
return this->HandleArguments(args, "COMPILE_OPTIONS", PROCESS_BEFORE);
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmTargetCompileOptionsCommand::HandleImportedTarget(
|
|
|
|
const std::string& tgt)
|
2013-05-16 13:20:16 +00:00
|
|
|
{
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream e;
|
2016-05-16 14:34:04 +00:00
|
|
|
e << "Cannot specify compile options for imported target \"" << tgt << "\".";
|
2013-05-16 13:20:16 +00:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmTargetCompileOptionsCommand::HandleMissingTarget(
|
|
|
|
const std::string& name)
|
2013-05-16 13:20:16 +00:00
|
|
|
{
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream e;
|
2016-05-16 14:34:04 +00:00
|
|
|
e << "Cannot specify compile options for target \"" << name
|
|
|
|
<< "\" "
|
2013-05-16 13:20:16 +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 cmTargetCompileOptionsCommand::Join(
|
|
|
|
const std::vector<std::string>& content)
|
2013-05-16 13:20:16 +00:00
|
|
|
{
|
2015-01-07 07:58:51 +00:00
|
|
|
return cmJoin(content, ";");
|
2013-05-16 13:20:16 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmTargetCompileOptionsCommand::HandleDirectContent(
|
|
|
|
cmTarget* tgt, const std::vector<std::string>& content, bool, bool)
|
2013-05-16 13:20:16 +00:00
|
|
|
{
|
2014-05-23 18:41:46 +00:00
|
|
|
cmListFileBacktrace lfbt = this->Makefile->GetBacktrace();
|
2015-07-08 21:17:16 +00:00
|
|
|
tgt->InsertCompileOption(this->Join(content), lfbt);
|
2013-11-08 23:18:35 +00:00
|
|
|
return true;
|
2013-05-16 13:20:16 +00:00
|
|
|
}
|