Skip to content

Commit 7cb39d9

Browse files
committed
vcxproj: avoid escaping double quotes in the defines
Visual Studio 2022 does not like that at all. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9a198fc commit 7cb39d9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

contrib/buildsystems/Generators/Vcxproj.pm

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ sub createProject {
8888
$defines =~ s/</&lt;/g;
8989
$defines =~ s/>/&gt;/g;
9090
$defines =~ s/\'//g;
91+
$defines =~ s/\\"/"/g;
9192

9293
my $rcdefines = $defines;
9394
$rcdefines =~ s/(?<!\\)"/\\$&/g;

0 commit comments

Comments
 (0)