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:
Johannes Schindelin 2022-06-28 17:36:21 +02:00 коммит произвёл Matthew John Cheetham
Родитель aef7c7e672
Коммит 34343003af
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -88,6 +88,7 @@ sub createProject {
$defines =~ s/</&lt;/g;
$defines =~ s/>/&gt;/g;
$defines =~ s/\'//g;
$defines =~ s/\\"/"/g;
my $rcdefines = $defines;
$rcdefines =~ s/(?<!\\)"/\\$&/g;