зеркало из https://github.com/microsoft/git.git
vcxproj: avoid escaping double quotes in the defines
Visual Studio 2022 does not like that at all. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Родитель
aef7c7e672
Коммит
34343003af
|
@ -88,6 +88,7 @@ sub createProject {
|
|||
$defines =~ s/</</g;
|
||||
$defines =~ s/>/>/g;
|
||||
$defines =~ s/\'//g;
|
||||
$defines =~ s/\\"/"/g;
|
||||
|
||||
my $rcdefines = $defines;
|
||||
$rcdefines =~ s/(?<!\\)"/\\$&/g;
|
||||
|
|
Загрузка…
Ссылка в новой задаче