]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/x11.t
Script updates
[wxWidgets.git] / distrib / msw / tmake / x11.t
index 35fbba7e612538de1cb97eefec55e4c17e9772cc..fd4ebb39576900ca26bcc1766e68fa7e3183c9a2 100644 (file)
     IncludeTemplate("filelist.t");
 
     #! find all our sources
-    $project{"COMMONOBJS"} .= "parser.o ";
+    foreach $file (sort keys %wxX11) {
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+
+        $project{"X11_SOURCES"} .= "x11/" . $file . " ";
+        $project{"GUIOBJS"} .= $fileobj . " ";
+    }
 
     foreach $file (sort keys %wxGeneric) {
         next if $wxGeneric{$file} =~ /\bNotX11\b/;
         $project{"COMMONOBJS"} .= $fileobj . " ";
     }
 
-    foreach $file (sort keys %wxX11) {
-        ($fileobj = $file) =~ s/cp?p?$/\o/;
-
-        $project{"X11_SOURCES"} .= "x11/" . $file . " ";
-        $project{"GUIOBJS"} .= $fileobj . " ";
-    }
-
     foreach $file (sort keys %wxUNIX) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
         $project{"X11_HEADERS"} .= "x11/" . $file . " "
     }
 
+    foreach $file (sort keys %wxUNIVINCLUDE) {
+        $project{"X11_HEADERS"} .= "univ/" . $file . " ";
+    }
+
     foreach $file (sort keys %wxGENERICINCLUDE) {
         $project{"X11_HEADERS"} .= "generic/" . $file . " "
     }
@@ -88,15 +90,15 @@ ALL_SOURCES = \
 ALL_HEADERS = \
                #$ ExpandList("X11_HEADERS");
 
+GUI_LOWLEVEL_OBJS = \
+               #$ ExpandList("GUIOBJS");
+
 COMMONOBJS = \
                #$ ExpandList("COMMONOBJS");
 
 GENERICOBJS = \
                #$ ExpandList("GENERICOBJS");
 
-GUIOBJS = \
-               #$ ExpandList("GUIOBJS");
-
 UNIXOBJS = \
                #$ ExpandList("UNIXOBJS");