foreach $file (sort keys %wxCommon) {
next if $wxCommon{$file} =~ /\b16\b/;
- next if $wxCommon{$file} =~ /\bBO\b/;
my $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXCOMMONSRCS";
$project{$tag} .= $file . " "
next if $wxMSW{$file} =~ /\b16\b/;
my $tag;
- if ( $wxMSW{$file} =~ /\bO\b/ ) { $tag = "WXOLESRCS" }
- else { $tag = $file =~ /\.c$/ ? "WXMSWCSRCS" : "WXMSWSRCS" }
+ if ( $wxMSW{$file} =~ /\bO\b/ ) { $tag = "WXOLESRCS" }
+ else { $tag = $file =~ /\.c$/ ? "WXMSWCSRCS" : "WXMSWSRCS" }
$project{$tag} .= $file . " "
}