From 934d4f8d8c3655d7093e7876570ea1840eaae8f0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 6 Oct 1999 22:41:17 +0000 Subject: [PATCH] fix for .c files in msw subdir for VC++ 6 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/msw/tmake/vc6.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrib/msw/tmake/vc6.t b/distrib/msw/tmake/vc6.t index e956d796a7..052c55f0e8 100644 --- a/distrib/msw/tmake/vc6.t +++ b/distrib/msw/tmake/vc6.t @@ -27,7 +27,9 @@ foreach $file (sort keys %wxMSW) { next if $wxMSW{$file} =~ /\b16\b/; - my $tag = $wxMSW{$file} =~ /\bO\b/ ? "WXOLESRCS" : "WXMSWSRCS"; + my $tag; + if ( $wxMSW{$file} =~ /\bO\b/ ) { $tag = "WXOLESRCS" } + else { $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXMSWSRCS" } $project{$tag} .= $file . " " } -- 2.45.2