]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/vc6.t
fix for .c files in msw subdir for VC++ 6
[wxWidgets.git] / 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 . " "
     }