mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
BUG: Do not escape make variable references in VS additional options.
This commit is contained in:
@@ -2173,8 +2173,10 @@ void cmLocalVisualStudio7GeneratorOptions::HandleFlag(const char* flag)
|
||||
// This option is not known. Store it in the output flags.
|
||||
this->FlagString += " ";
|
||||
this->FlagString +=
|
||||
cmSystemTools::EscapeWindowsShellArgument(flag,
|
||||
cmsysSystem_Shell_Flag_VSIDE);
|
||||
cmSystemTools::EscapeWindowsShellArgument(
|
||||
flag,
|
||||
cmsysSystem_Shell_Flag_AllowMakeVariables |
|
||||
cmsysSystem_Shell_Flag_VSIDE);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user