X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0f04dbf324161e77851503365350b21805e99115..861eef72aa270e2d34f7b7d081fffa2b4f7055dc:/distrib/msw/tmake/gtk.t?ds=inline diff --git a/distrib/msw/tmake/gtk.t b/distrib/msw/tmake/gtk.t index 45aacb564b..798d035553 100644 --- a/distrib/msw/tmake/gtk.t +++ b/distrib/msw/tmake/gtk.t @@ -13,10 +13,8 @@ IncludeTemplate("filelist.t"); #! find all our sources - $project{"COMMONOBJS"} .= "parser.o "; - foreach $file (sort keys %wxGeneric) { - next if $wxGeneric{$file} =~ /\bR\b/; + next if $wxGeneric{$file} =~ /\bNotGTK\b/; ($fileobj = $file) =~ s/cp?p?$/\o/; @@ -35,7 +33,7 @@ } foreach $file (sort keys %wxCommon) { - next if $wxCommon{$file} =~ /\bR\b/; + next if $wxCommon{$file} =~ /\bNotGTK\b/; ($fileobj = $file) =~ s/cp?p?$/\o/; @@ -70,7 +68,7 @@ #! find all our headers foreach $file (sort keys %wxWXINCLUDE) { - next if $wxWXINCLUDE{$file} =~ /\bR\b/; + next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/; $project{"GTK_HEADERS"} .= $file . " " } @@ -80,6 +78,8 @@ } foreach $file (sort keys %wxGENERICINCLUDE) { + next if $wxGENERICINCLUDE{$file} =~ /\bNotGTK\b/; + $project{"GTK_HEADERS"} .= "generic/" . $file . " " }