2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-08-11 09:54:56 -04:00
|
|
|
#include "cmGeneratorExpression.h"
|
|
|
|
|
2017-04-11 22:00:21 +02:00
|
|
|
#include "cmsys/RegularExpression.hxx"
|
2016-11-05 21:40:14 +01:00
|
|
|
#include <utility>
|
|
|
|
|
2012-10-15 10:27:42 +02:00
|
|
|
#include "assert.h"
|
2015-03-08 13:51:20 +01:00
|
|
|
#include "cmAlgorithms.h"
|
2016-09-01 20:59:28 +02:00
|
|
|
#include "cmGeneratorExpressionContext.h"
|
2012-09-11 19:53:38 +02:00
|
|
|
#include "cmGeneratorExpressionEvaluator.h"
|
|
|
|
#include "cmGeneratorExpressionLexer.h"
|
|
|
|
#include "cmGeneratorExpressionParser.h"
|
2016-09-01 20:59:28 +02:00
|
|
|
#include "cmSystemTools.h"
|
2016-11-05 21:40:14 +01:00
|
|
|
#include "cm_auto_ptr.hxx"
|
2012-09-11 19:53:38 +02:00
|
|
|
|
2009-08-11 09:54:56 -04:00
|
|
|
cmGeneratorExpression::cmGeneratorExpression(
|
2016-05-16 10:34:04 -04:00
|
|
|
const cmListFileBacktrace& backtrace)
|
|
|
|
: Backtrace(backtrace)
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-28 10:17:52 -04:00
|
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> cmGeneratorExpression::Parse(
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string const& input)
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
2016-06-28 10:17:52 -04:00
|
|
|
return CM_AUTO_PTR<cmCompiledGeneratorExpression>(
|
2015-07-08 23:52:51 +02:00
|
|
|
new cmCompiledGeneratorExpression(this->Backtrace, input));
|
2009-08-11 09:54:56 -04:00
|
|
|
}
|
|
|
|
|
2016-06-28 10:17:52 -04:00
|
|
|
CM_AUTO_PTR<cmCompiledGeneratorExpression> cmGeneratorExpression::Parse(
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* input)
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
2014-02-08 12:01:01 -05:00
|
|
|
return this->Parse(std::string(input ? input : ""));
|
2012-09-12 15:11:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmGeneratorExpression::~cmGeneratorExpression()
|
|
|
|
{
|
2012-08-13 09:49:53 -04:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* cmCompiledGeneratorExpression::Evaluate(
|
|
|
|
cmLocalGenerator* lg, const std::string& config, bool quiet,
|
2015-09-16 04:38:52 +02:00
|
|
|
const cmGeneratorTarget* headTarget,
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
|
|
|
std::string const& language) const
|
2012-11-06 16:06:31 +01:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
return this->Evaluate(lg, config, quiet, headTarget, headTarget, dagChecker,
|
2015-02-22 17:43:13 +01:00
|
|
|
language);
|
2012-11-06 16:06:31 +01:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* cmCompiledGeneratorExpression::Evaluate(
|
2015-07-25 16:56:52 +02:00
|
|
|
cmLocalGenerator* lg, const std::string& config, bool quiet,
|
2016-05-16 10:34:04 -04:00
|
|
|
const cmGeneratorTarget* headTarget, const cmGeneratorTarget* currentTarget,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker,
|
2015-02-22 17:43:13 +01:00
|
|
|
std::string const& language) const
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGeneratorExpressionContext context(
|
|
|
|
lg, config, quiet, headTarget, currentTarget ? currentTarget : headTarget,
|
|
|
|
this->EvaluateForBuildsystem, this->Backtrace, language);
|
2012-09-11 19:53:38 +02:00
|
|
|
|
2015-02-22 21:30:44 +01:00
|
|
|
return this->EvaluateWithContext(context, dagChecker);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmCompiledGeneratorExpression::EvaluateWithContext(
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGeneratorExpressionContext& context,
|
|
|
|
cmGeneratorExpressionDAGChecker* dagChecker) const
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!this->NeedsEvaluation) {
|
2012-11-19 19:30:56 +01:00
|
|
|
return this->Input.c_str();
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-11 19:53:38 +02:00
|
|
|
|
|
|
|
this->Output = "";
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it =
|
|
|
|
this->Evaluators.begin();
|
|
|
|
const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end =
|
|
|
|
this->Evaluators.end();
|
2012-09-11 19:53:38 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
for (; it != end; ++it) {
|
2013-02-07 13:04:46 +01:00
|
|
|
this->Output += (*it)->Evaluate(&context, dagChecker);
|
2012-11-05 14:48:42 +01:00
|
|
|
|
2015-01-15 03:09:43 +01:00
|
|
|
this->SeenTargetProperties.insert(context.SeenTargetProperties.begin(),
|
|
|
|
context.SeenTargetProperties.end());
|
2016-05-16 10:34:04 -04:00
|
|
|
if (context.HadError) {
|
2012-09-11 19:53:38 +02:00
|
|
|
this->Output = "";
|
|
|
|
break;
|
2012-08-13 10:00:32 -04:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2014-05-15 11:32:30 +02:00
|
|
|
|
|
|
|
this->MaxLanguageStandard = context.MaxLanguageStandard;
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!context.HadError) {
|
2013-02-03 07:33:15 +01:00
|
|
|
this->HadContextSensitiveCondition = context.HadContextSensitiveCondition;
|
2014-07-21 13:02:22 -04:00
|
|
|
this->HadHeadSensitiveCondition = context.HadHeadSensitiveCondition;
|
2014-11-04 23:24:54 +01:00
|
|
|
this->SourceSensitiveTargets = context.SourceSensitiveTargets;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-11 19:53:38 +02:00
|
|
|
|
2013-02-09 11:12:20 +01:00
|
|
|
this->DependTargets = context.DependTargets;
|
|
|
|
this->AllTargetsSeen = context.AllTargets;
|
2012-09-11 19:53:38 +02:00
|
|
|
// TODO: Return a std::string from here instead?
|
|
|
|
return this->Output.c_str();
|
2009-08-11 09:54:56 -04:00
|
|
|
}
|
|
|
|
|
2012-09-12 15:11:25 +02:00
|
|
|
cmCompiledGeneratorExpression::cmCompiledGeneratorExpression(
|
2016-05-16 10:34:04 -04:00
|
|
|
cmListFileBacktrace const& backtrace, const std::string& input)
|
|
|
|
: Backtrace(backtrace)
|
|
|
|
, Input(input)
|
|
|
|
, HadContextSensitiveCondition(false)
|
|
|
|
, HadHeadSensitiveCondition(false)
|
|
|
|
, EvaluateForBuildsystem(false)
|
2012-09-12 15:11:25 +02:00
|
|
|
{
|
2012-11-19 19:30:56 +01:00
|
|
|
cmGeneratorExpressionLexer l;
|
2016-05-16 10:34:04 -04:00
|
|
|
std::vector<cmGeneratorExpressionToken> tokens = l.Tokenize(this->Input);
|
2013-02-28 12:04:23 +01:00
|
|
|
this->NeedsEvaluation = l.GetSawGeneratorExpression();
|
2012-09-12 15:11:25 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
if (this->NeedsEvaluation) {
|
2012-11-19 19:30:56 +01:00
|
|
|
cmGeneratorExpressionParser p(tokens);
|
|
|
|
p.Parse(this->Evaluators);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-12 15:11:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmCompiledGeneratorExpression::~cmCompiledGeneratorExpression()
|
2009-08-11 09:54:56 -04:00
|
|
|
{
|
2015-01-04 13:33:16 +01:00
|
|
|
cmDeleteAll(this->Evaluators);
|
2009-08-11 09:54:56 -04:00
|
|
|
}
|
2012-10-15 10:27:42 +02:00
|
|
|
|
2013-02-18 11:24:41 +01:00
|
|
|
std::string cmGeneratorExpression::StripEmptyListElements(
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::string& input)
|
2013-01-13 09:39:29 +01:00
|
|
|
{
|
2017-05-30 22:37:46 +03:00
|
|
|
if (input.find(';') == std::string::npos) {
|
2014-02-09 05:09:52 -05:00
|
|
|
return input;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-01-13 09:39:29 +01:00
|
|
|
std::string result;
|
2014-02-09 05:09:52 -05:00
|
|
|
result.reserve(input.size());
|
2013-01-13 09:39:29 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* c = input.c_str();
|
|
|
|
const char* last = c;
|
2013-01-13 09:39:29 +01:00
|
|
|
bool skipSemiColons = true;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (; *c; ++c) {
|
|
|
|
if (*c == ';') {
|
|
|
|
if (skipSemiColons) {
|
2014-02-09 05:09:52 -05:00
|
|
|
result.append(last, c - last);
|
|
|
|
last = c + 1;
|
2013-01-13 09:39:29 +01:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
skipSemiColons = true;
|
|
|
|
} else {
|
2013-01-13 09:39:29 +01:00
|
|
|
skipSemiColons = false;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2014-02-09 05:09:52 -05:00
|
|
|
result.append(last);
|
2013-01-13 09:39:29 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!result.empty() && *(result.end() - 1) == ';') {
|
2013-01-13 09:39:29 +01:00
|
|
|
result.resize(result.size() - 1);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-01-13 09:39:29 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
static std::string stripAllGeneratorExpressions(const std::string& input)
|
2012-10-15 10:27:42 +02:00
|
|
|
{
|
|
|
|
std::string result;
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2013-09-13 17:22:05 +02:00
|
|
|
int nestingLevel = 0;
|
2017-05-30 22:37:46 +03:00
|
|
|
while ((pos = input.find("$<", lastPos)) != std::string::npos) {
|
2012-10-15 10:27:42 +02:00
|
|
|
result += input.substr(lastPos, pos - lastPos);
|
|
|
|
pos += 2;
|
2013-09-13 17:22:05 +02:00
|
|
|
nestingLevel = 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-10-15 10:27:42 +02:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-10-15 10:27:42 +02:00
|
|
|
--nestingLevel;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (nestingLevel == 0) {
|
2012-10-15 10:27:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-10-15 10:27:42 +02:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!*c) {
|
2012-10-15 10:27:42 +02:00
|
|
|
result += "$<" + input.substr(pos, traversed);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-10-15 10:27:42 +02:00
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (nestingLevel == 0) {
|
2013-09-13 17:22:05 +02:00
|
|
|
result += input.substr(lastPos);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-02-18 11:24:41 +01:00
|
|
|
return cmGeneratorExpression::StripEmptyListElements(result);
|
2012-10-15 10:27:42 +02:00
|
|
|
}
|
2012-09-23 13:16:44 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
static void prefixItems(const std::string& content, std::string& result,
|
|
|
|
const std::string& prefix)
|
2013-07-25 09:05:03 +02:00
|
|
|
{
|
|
|
|
std::vector<std::string> entries;
|
|
|
|
cmGeneratorExpression::Split(content, entries);
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* sep = "";
|
|
|
|
for (std::vector<std::string>::const_iterator ei = entries.begin();
|
|
|
|
ei != entries.end(); ++ei) {
|
2013-10-07 13:24:41 +02:00
|
|
|
result += sep;
|
|
|
|
sep = ";";
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!cmSystemTools::FileIsFullPath(ei->c_str()) &&
|
|
|
|
cmGeneratorExpression::Find(*ei) != 0) {
|
2013-07-25 09:05:03 +02:00
|
|
|
result += prefix;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
result += *ei;
|
|
|
|
}
|
2013-07-25 09:05:03 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
static std::string stripExportInterface(
|
|
|
|
const std::string& input, cmGeneratorExpression::PreprocessContext context,
|
|
|
|
bool resolveRelative)
|
2012-09-23 13:16:44 +02:00
|
|
|
{
|
|
|
|
std::string result;
|
|
|
|
|
2013-09-13 17:22:05 +02:00
|
|
|
int nestingLevel = 0;
|
2012-09-23 13:16:44 +02:00
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2016-05-16 10:34:04 -04:00
|
|
|
while (true) {
|
2013-03-14 21:40:21 +01:00
|
|
|
std::string::size_type bPos = input.find("$<BUILD_INTERFACE:", lastPos);
|
|
|
|
std::string::size_type iPos = input.find("$<INSTALL_INTERFACE:", lastPos);
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
if (bPos == std::string::npos && iPos == std::string::npos) {
|
2013-03-14 21:40:21 +01:00
|
|
|
break;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-03-14 21:40:21 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
if (bPos == std::string::npos) {
|
2013-03-14 21:40:21 +01:00
|
|
|
pos = iPos;
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (iPos == std::string::npos) {
|
2013-03-14 21:40:21 +01:00
|
|
|
pos = bPos;
|
2016-05-16 10:34:04 -04:00
|
|
|
} else {
|
2013-03-14 21:40:21 +01:00
|
|
|
pos = (bPos < iPos) ? bPos : iPos;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-03-14 21:40:21 +01:00
|
|
|
|
2012-09-23 13:16:44 +02:00
|
|
|
result += input.substr(lastPos, pos - lastPos);
|
|
|
|
const bool gotInstallInterface = input[pos + 2] == 'I';
|
|
|
|
pos += gotInstallInterface ? sizeof("$<INSTALL_INTERFACE:") - 1
|
|
|
|
: sizeof("$<BUILD_INTERFACE:") - 1;
|
2013-09-13 17:22:05 +02:00
|
|
|
nestingLevel = 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-09-23 13:16:44 +02:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-09-23 13:16:44 +02:00
|
|
|
--nestingLevel;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (nestingLevel != 0) {
|
2012-09-23 13:16:44 +02:00
|
|
|
continue;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (context == cmGeneratorExpression::BuildInterface &&
|
|
|
|
!gotInstallInterface) {
|
2012-09-23 13:16:44 +02:00
|
|
|
result += input.substr(pos, c - cStart);
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (context == cmGeneratorExpression::InstallInterface &&
|
|
|
|
gotInstallInterface) {
|
2013-07-25 09:05:03 +02:00
|
|
|
const std::string content = input.substr(pos, c - cStart);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (resolveRelative) {
|
2013-07-25 09:05:03 +02:00
|
|
|
prefixItems(content, result, "${_IMPORT_PREFIX}/");
|
2016-05-16 10:34:04 -04:00
|
|
|
} else {
|
2013-07-25 09:05:03 +02:00
|
|
|
result += content;
|
2012-09-23 13:16:44 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
break;
|
2012-09-23 13:16:44 +02:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-23 13:16:44 +02:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!*c) {
|
2012-09-23 13:16:44 +02:00
|
|
|
result += std::string(gotInstallInterface ? "$<INSTALL_INTERFACE:"
|
2016-05-16 10:34:04 -04:00
|
|
|
: "$<BUILD_INTERFACE:") +
|
|
|
|
input.substr(pos, traversed);
|
|
|
|
}
|
2012-09-23 13:16:44 +02:00
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (nestingLevel == 0) {
|
2013-09-13 17:22:05 +02:00
|
|
|
result += input.substr(lastPos);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-23 13:16:44 +02:00
|
|
|
|
2013-02-18 11:24:41 +01:00
|
|
|
return cmGeneratorExpression::StripEmptyListElements(result);
|
2012-09-23 13:16:44 +02:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void cmGeneratorExpression::Split(const std::string& input,
|
|
|
|
std::vector<std::string>& output)
|
2012-12-10 12:00:34 +01:00
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string::size_type lastPos = pos;
|
2017-05-30 22:37:46 +03:00
|
|
|
while ((pos = input.find("$<", lastPos)) != std::string::npos) {
|
2012-12-10 12:00:34 +01:00
|
|
|
std::string part = input.substr(lastPos, pos - lastPos);
|
|
|
|
std::string preGenex;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!part.empty()) {
|
2016-05-24 21:24:10 +02:00
|
|
|
std::string::size_type startPos = input.rfind(';', pos);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (startPos == std::string::npos) {
|
2013-02-28 17:39:27 +01:00
|
|
|
preGenex = part;
|
|
|
|
part = "";
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (startPos != pos - 1 && startPos >= lastPos) {
|
2012-12-10 12:00:34 +01:00
|
|
|
part = input.substr(lastPos, startPos - lastPos);
|
|
|
|
preGenex = input.substr(startPos + 1, pos - startPos - 1);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (!part.empty()) {
|
2014-03-11 00:04:11 +01:00
|
|
|
cmSystemTools::ExpandListArgument(part, output);
|
2012-12-10 12:00:34 +01:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-12-10 12:00:34 +01:00
|
|
|
pos += 2;
|
|
|
|
int nestingLevel = 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* c = input.c_str() + pos;
|
|
|
|
const char* const cStart = c;
|
|
|
|
for (; *c; ++c) {
|
|
|
|
if (c[0] == '$' && c[1] == '<') {
|
2012-12-10 12:00:34 +01:00
|
|
|
++nestingLevel;
|
|
|
|
++c;
|
|
|
|
continue;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (c[0] == '>') {
|
2012-12-10 12:00:34 +01:00
|
|
|
--nestingLevel;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (nestingLevel == 0) {
|
2012-12-10 12:00:34 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
for (; *c; ++c) {
|
2012-12-10 12:00:34 +01:00
|
|
|
// Capture the part after the genex and before the next ';'
|
2016-05-16 10:34:04 -04:00
|
|
|
if (c[0] == ';') {
|
2012-12-10 12:00:34 +01:00
|
|
|
--c;
|
|
|
|
break;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-12-10 12:00:34 +01:00
|
|
|
const std::string::size_type traversed = (c - cStart) + 1;
|
|
|
|
output.push_back(preGenex + "$<" + input.substr(pos, traversed));
|
|
|
|
pos += traversed;
|
|
|
|
lastPos = pos;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (lastPos < input.size()) {
|
2012-12-10 12:00:34 +01:00
|
|
|
cmSystemTools::ExpandListArgument(input.substr(lastPos), output);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-12-10 12:00:34 +01:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string cmGeneratorExpression::Preprocess(const std::string& input,
|
2013-07-25 09:05:03 +02:00
|
|
|
PreprocessContext context,
|
|
|
|
bool resolveRelative)
|
2012-09-23 13:16:44 +02:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
if (context == StripAllGeneratorExpressions) {
|
2012-09-23 13:16:44 +02:00
|
|
|
return stripAllGeneratorExpressions(input);
|
2016-08-18 20:36:29 +02:00
|
|
|
}
|
|
|
|
if (context == BuildInterface || context == InstallInterface) {
|
2013-07-25 09:05:03 +02:00
|
|
|
return stripExportInterface(input, context, resolveRelative);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-09-23 13:16:44 +02:00
|
|
|
|
2016-12-10 15:17:06 +01:00
|
|
|
assert(false &&
|
|
|
|
"cmGeneratorExpression::Preprocess called with invalid args");
|
2012-09-23 13:16:44 +02:00
|
|
|
return std::string();
|
|
|
|
}
|
2013-02-06 13:18:10 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string::size_type cmGeneratorExpression::Find(const std::string& input)
|
2013-02-06 13:18:10 +01:00
|
|
|
{
|
|
|
|
const std::string::size_type openpos = input.find("$<");
|
2016-05-16 10:34:04 -04:00
|
|
|
if (openpos != std::string::npos &&
|
2016-05-24 21:24:10 +02:00
|
|
|
input.find('>', openpos) != std::string::npos) {
|
2013-02-06 13:32:15 +01:00
|
|
|
return openpos;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2013-02-06 13:18:10 +01:00
|
|
|
return std::string::npos;
|
|
|
|
}
|
2013-02-06 13:32:15 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmGeneratorExpression::IsValidTargetName(const std::string& input)
|
2013-02-06 13:32:15 +01:00
|
|
|
{
|
|
|
|
// The ':' is supported to allow use with IMPORTED targets. At least
|
|
|
|
// Qt 4 and 5 IMPORTED targets use ':' as the namespace delimiter.
|
2014-04-30 13:12:29 -04:00
|
|
|
static cmsys::RegularExpression targetNameValidator("^[A-Za-z0-9_.:+-]+$");
|
2013-02-06 13:32:15 +01:00
|
|
|
|
2014-04-30 13:12:29 -04:00
|
|
|
return targetNameValidator.find(input);
|
2013-02-06 13:32:15 +01:00
|
|
|
}
|
2014-05-15 11:32:30 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void cmCompiledGeneratorExpression::GetMaxLanguageStandard(
|
|
|
|
const cmGeneratorTarget* tgt, std::map<std::string, std::string>& mapping)
|
2014-05-15 11:32:30 +02:00
|
|
|
{
|
2015-10-10 18:41:51 +02:00
|
|
|
typedef std::map<cmGeneratorTarget const*,
|
2016-05-16 10:34:04 -04:00
|
|
|
std::map<std::string, std::string> >
|
|
|
|
MapType;
|
2014-05-15 11:32:30 +02:00
|
|
|
MapType::const_iterator it = this->MaxLanguageStandard.find(tgt);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (it != this->MaxLanguageStandard.end()) {
|
2014-05-15 11:32:30 +02:00
|
|
|
mapping = it->second;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2014-05-15 11:32:30 +02:00
|
|
|
}
|