Module: wine Branch: master Commit: 23787fc7d976b37c28678b2e9bac89b04ce08e90 URL: http://source.winehq.org/git/wine.git/?a=commit;h=23787fc7d976b37c28678b2e9b...
Author: Reece Dunn msclrhd@googlemail.com Date: Wed Oct 15 08:19:00 2008 +0100
msvcmaker: The Visual Studio project conversion tool requires a configuration type.
---
tools/winapi/msvcmaker | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker index 91ea656..c84b703 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) {