X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7266b6723573ce6317577226cb1e5d32826e24e8..17483066d2fb8c6381ec90265f2f3b2d4fb1f88a:/distrib/msw/tmake/x11.t diff --git a/distrib/msw/tmake/x11.t b/distrib/msw/tmake/x11.t index 4036206ddc..f493412685 100644 --- a/distrib/msw/tmake/x11.t +++ b/distrib/msw/tmake/x11.t @@ -15,6 +15,13 @@ #! 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/; @@ -33,13 +40,6 @@ $project{"COMMONOBJS"} .= $fileobj . " "; } - foreach $file (sort keys %wxX11) { - ($fileobj = $file) =~ s/cp?p?$/\o/; - - $project{"X11_SOURCES"} .= "x11/" . $file . " "; - $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " "; - } - foreach $file (sort keys %wxUNIX) { ($fileobj = $file) =~ s/cp?p?$/\o/; @@ -64,6 +64,10 @@ $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 +92,15 @@ ALL_SOURCES = \ ALL_HEADERS = \ #$ ExpandList("X11_HEADERS"); +GUI_LOWLEVEL_OBJS = \ + #$ ExpandList("GUIOBJS"); + COMMONOBJS = \ #$ ExpandList("COMMONOBJS"); GENERICOBJS = \ #$ ExpandList("GENERICOBJS"); -GUI_LOWLEVEL_OBJS = \ - #$ ExpandList("GUI_LOWLEVEL_OBJS"); - UNIXOBJS = \ #$ ExpandList("UNIXOBJS");