From 23787fc7d976b37c28678b2e9bac89b04ce08e90 Mon Sep 17 00:00:00 2001 From: Reece Dunn Date: Wed, 15 Oct 2008 08:19:00 +0100 Subject: [PATCH] msvcmaker: The Visual Studio project conversion tool requires a configuration type. --- tools/winapi/msvcmaker | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 91ea656a31d..c84b703e289 100755 --- a/tools/winapi/msvcmaker +++ b/tools/winapi/msvcmaker @@ -514,6 +514,12 @@ sub _generate_dsp($$) { push @_cfgs, "$cfg Release"; } @cfgs = @_cfgs; + } else { + my @_cfgs; + foreach my $cfg (@cfgs) { + push @_cfgs, "$cfg Debug"; + } + @cfgs = @_cfgs; } if (!$no_msvc_headers) { -- 2.11.4.GIT