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:
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user