]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/gtk.t
SetSelection must not send an event. Fixed an off
[wxWidgets.git] / distrib / msw / tmake / gtk.t
index 45aacb564b63cbbb6d5510152c3e9f52c87113a2..798d0355537baef187851c0377cf97d5879109fa 100644 (file)
     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 . " "
     }