file(GENERATE): Fix missing check for policy CMP0070

In commit 82be694c7a (file(GENERATE): Add policy CMP0070 to define
relative path behavior, 2017-06-08, v3.10.0-rc1~534^2), one path
calculation was forgotten.  Because of this the path name according to
the old behavior was added to the list of CMake generated files.

Fixes: #21038
This commit is contained in:
Josef Angstenberger
2020-08-01 03:21:42 +02:00
committed by Brad King
parent 2dc2732f67
commit 04fbd7566a

View File

@@ -94,8 +94,7 @@ void cmGeneratorExpressionEvaluationFile::CreateOutputFile(
gg->GetEnabledLanguages(enabledLanguages);
for (std::string const& le : enabledLanguages) {
std::string name = this->OutputFileExpr->Evaluate(lg, config, nullptr,
nullptr, nullptr, le);
std::string const name = this->GetOutputFileName(lg, config, le);
cmSourceFile* sf = lg->GetMakefile()->GetOrCreateSource(
name, false, cmSourceFileLocationKind::Known);
// Tell TraceDependencies that the file is not expected to exist