mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
Don't allow targets args in the new target commands.
This commit is contained in:
@@ -65,14 +65,6 @@ bool cmTargetPropCommandBase
|
||||
return true;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
static bool isGeneratorExpression(const std::string &lib)
|
||||
{
|
||||
const std::string::size_type openpos = lib.find("$<");
|
||||
return (openpos != std::string::npos)
|
||||
&& (lib.find(">", openpos) != std::string::npos);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool cmTargetPropCommandBase
|
||||
::ProcessContentArgs(std::vector<std::string> const& args,
|
||||
@@ -108,19 +100,7 @@ bool cmTargetPropCommandBase
|
||||
this->PopulateTargetProperies(scope, content, prepend);
|
||||
return true;
|
||||
}
|
||||
if (this->Makefile->FindTargetToUse(args[i].c_str()))
|
||||
{
|
||||
content += sep + "$<TARGET_PROPERTY:" + args[i]
|
||||
+ ",INTERFACE_" + this->Property + ">";
|
||||
}
|
||||
else if(isGeneratorExpression(args[i]))
|
||||
{
|
||||
content += sep + args[i];
|
||||
}
|
||||
else if (!this->HandleNonTargetArg(content, sep, args[i], args[0]))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
content += sep + args[i];
|
||||
sep = ";";
|
||||
}
|
||||
this->PopulateTargetProperies(scope, content, prepend);
|
||||
|
||||
Reference in New Issue
Block a user