1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-15 12:16:40 +08:00

VS: Drop outdated usage text about appending platform to generator name

This was missed by commit 381c446ff7 (VS: Remove support for appending a
platform to the generator name, 2024-12-13, v4.0.0-rc1~156^2).

Issue: #26481
This commit is contained in:
Brad King
2025-06-24 14:14:08 -04:00
parent 872d808ed4
commit bd31652e1b
2 changed files with 4 additions and 4 deletions

View File

@@ -56,9 +56,9 @@ public:
cmDocumentationEntry GetDocumentation() const override
{
return { cmStrCat(vs14generatorName, " [arch]"),
return { std::string(vs14generatorName),
"Generates Visual Studio 2015 project files. "
"Optional [arch] can be \"Win64\" or \"ARM\"." };
"Use -A option to specify architecture." };
}
std::vector<std::string> GetGeneratorNames() const override

View File

@@ -222,9 +222,9 @@ public:
cmDocumentationEntry GetDocumentation() const override
{
return { cmStrCat(vs15generatorName, " [arch]"),
return { std::string(vs15generatorName),
"Generates Visual Studio 2017 project files. "
"Optional [arch] can be \"Win64\" or \"ARM\"." };
"Use -A option to specify architecture." };
}
std::vector<std::string> GetGeneratorNames() const override