]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for .c files in msw subdir for VC++ 6
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Oct 1999 22:41:17 +0000 (22:41 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 6 Oct 1999 22:41:17 +0000 (22:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/msw/tmake/vc6.t

index e956d796a76d27509d238c3faef85668901d6706..052c55f0e89728c975f5cbfcc32120379f89e990 100644 (file)
@@ -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 . " "
     }