mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 06:40:16 -05:00
Genex: Use case-sensitive comparison in PLATFORM_ID.
This commit is contained in:
@@ -512,7 +512,7 @@ struct PlatformIdNode : public cmGeneratorExpressionNode
|
||||
return parameters.front().empty() ? "1" : "0";
|
||||
}
|
||||
|
||||
if (cmsysString_strcasecmp(parameters.begin()->c_str(), platformId) == 0)
|
||||
if (strcmp(parameters.begin()->c_str(), platformId) == 0)
|
||||
{
|
||||
return "1";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user