Commit 23787fc7 authored by Reece Dunn's avatar Reece Dunn Committed by Alexandre Julliard

msvcmaker: The Visual Studio project conversion tool requires a configuration type.

parent 3d143253
...@@ -514,6 +514,12 @@ sub _generate_dsp($$) { ...@@ -514,6 +514,12 @@ sub _generate_dsp($$) {
push @_cfgs, "$cfg Release"; push @_cfgs, "$cfg Release";
} }
@cfgs = @_cfgs; @cfgs = @_cfgs;
} else {
my @_cfgs;
foreach my $cfg (@cfgs) {
push @_cfgs, "$cfg Debug";
}
@cfgs = @_cfgs;
} }
if (!$no_msvc_headers) { if (!$no_msvc_headers) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment