cmake/Source/cmTargetPropCommandBase.cxx

143 lines
4.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. */
2013-03-16 19:13:01 +02:00
#include "cmTargetPropCommandBase.h"
#include "cmGlobalGenerator.h"
2017-04-14 19:02:05 +02:00
#include "cmMakefile.h"
#include "cmStateTypes.h"
#include "cmTarget.h"
#include "cmake.h"
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
bool cmTargetPropCommandBase::HandleArguments(
std::vector<std::string> const& args, const std::string& prop,
ArgumentFlags flags)
2013-03-16 19:13:01 +02:00
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
2013-03-16 19:13:01 +02:00
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
// Lookup the target for which libraries are specified.
2016-07-09 11:21:54 +02:00
if (this->Makefile->IsAlias(args[0])) {
2013-11-03 12:27:13 +02:00
this->SetError("can not be used on an ALIAS target.");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
this->Target =
2016-07-09 11:21:54 +02:00
this->Makefile->GetCMakeInstance()->GetGlobalGenerator()->FindTarget(
args[0]);
if (!this->Target) {
2014-08-03 19:52:23 +02:00
this->Target = this->Makefile->FindTargetToUse(args[0]);
2016-07-09 11:21:54 +02:00
}
if (!this->Target) {
2013-03-16 19:13:01 +02:00
this->HandleMissingTarget(args[0]);
return false;
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
if ((this->Target->GetType() != cmStateEnums::SHARED_LIBRARY) &&
(this->Target->GetType() != cmStateEnums::STATIC_LIBRARY) &&
(this->Target->GetType() != cmStateEnums::OBJECT_LIBRARY) &&
(this->Target->GetType() != cmStateEnums::MODULE_LIBRARY) &&
(this->Target->GetType() != cmStateEnums::INTERFACE_LIBRARY) &&
(this->Target->GetType() != cmStateEnums::EXECUTABLE)) {
2013-03-16 19:13:01 +02:00
this->SetError("called with non-compilable target type");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2013-11-03 12:27:13 +02:00
bool system = false;
2013-03-16 19:13:01 +02:00
unsigned int argIndex = 1;
2016-07-09 11:21:54 +02:00
if ((flags & PROCESS_SYSTEM) && args[argIndex] == "SYSTEM") {
if (args.size() < 3) {
2013-11-03 12:27:13 +02:00
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
system = true;
++argIndex;
2016-07-09 11:21:54 +02:00
}
2013-11-03 12:27:13 +02:00
2013-03-16 19:13:01 +02:00
bool prepend = false;
2016-07-09 11:21:54 +02:00
if ((flags & PROCESS_BEFORE) && args[argIndex] == "BEFORE") {
if (args.size() < 3) {
2013-03-16 19:13:01 +02:00
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
prepend = true;
++argIndex;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
this->Property = prop;
2016-07-09 11:21:54 +02:00
while (argIndex < args.size()) {
if (!this->ProcessContentArgs(args, argIndex, prepend, system)) {
2013-03-16 19:13:01 +02:00
return false;
}
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
return true;
}
2016-07-09 11:21:54 +02:00
bool cmTargetPropCommandBase::ProcessContentArgs(
std::vector<std::string> const& args, unsigned int& argIndex, bool prepend,
bool system)
2013-03-16 19:13:01 +02:00
{
2017-07-20 19:35:53 +02:00
std::string const& scope = args[argIndex];
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (scope != "PUBLIC" && scope != "PRIVATE" && scope != "INTERFACE") {
2013-03-16 19:13:01 +02:00
this->SetError("called with invalid arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (this->Target->IsImported()) {
2013-03-16 19:13:01 +02:00
this->HandleImportedTarget(args[0]);
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
2017-04-14 19:02:05 +02:00
if (this->Target->GetType() == cmStateEnums::INTERFACE_LIBRARY &&
2016-07-09 11:21:54 +02:00
scope != "INTERFACE") {
2014-08-03 19:52:23 +02:00
this->SetError("may only be set INTERFACE properties on INTERFACE "
2016-07-09 11:21:54 +02:00
"targets");
2014-08-03 19:52:23 +02:00
return false;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2013-03-16 19:13:01 +02:00
++argIndex;
std::vector<std::string> content;
2016-07-09 11:21:54 +02:00
for (unsigned int i = argIndex; i < args.size(); ++i, ++argIndex) {
if (args[i] == "PUBLIC" || args[i] == "PRIVATE" ||
args[i] == "INTERFACE") {
2015-04-27 22:25:09 +02:00
return this->PopulateTargetProperies(scope, content, prepend, system);
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
content.push_back(args[i]);
}
2015-04-27 22:25:09 +02:00
return this->PopulateTargetProperies(scope, content, prepend, system);
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
bool cmTargetPropCommandBase::PopulateTargetProperies(
const std::string& scope, const std::vector<std::string>& content,
bool prepend, bool system)
2013-03-16 19:13:01 +02:00
{
2016-07-09 11:21:54 +02:00
if (scope == "PRIVATE" || scope == "PUBLIC") {
if (!this->HandleDirectContent(this->Target, content, prepend, system)) {
2015-04-27 22:25:09 +02:00
return false;
2013-03-16 19:13:01 +02:00
}
2016-07-09 11:21:54 +02:00
}
if (scope == "INTERFACE" || scope == "PUBLIC") {
2013-11-03 12:27:13 +02:00
this->HandleInterfaceContent(this->Target, content, prepend, system);
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
return true;
2013-11-03 12:27:13 +02:00
}
2016-07-09 11:21:54 +02:00
void cmTargetPropCommandBase::HandleInterfaceContent(
cmTarget* tgt, const std::vector<std::string>& content, bool prepend, bool)
2013-11-03 12:27:13 +02:00
{
2016-07-09 11:21:54 +02:00
if (prepend) {
2013-11-03 12:27:13 +02:00
const std::string propName = std::string("INTERFACE_") + this->Property;
2016-07-09 11:21:54 +02:00
const char* propValue = tgt->GetProperty(propName);
const std::string totalContent = this->Join(content) +
(propValue ? std::string(";") + propValue : std::string());
2015-04-27 22:25:09 +02:00
tgt->SetProperty(propName, totalContent.c_str());
2016-07-09 11:21:54 +02:00
} else {
2015-04-27 22:25:09 +02:00
tgt->AppendProperty("INTERFACE_" + this->Property,
2016-07-09 11:21:54 +02:00
this->Join(content).c_str());
}
2013-03-16 19:13:01 +02:00
}