X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7266b6723573ce6317577226cb1e5d32826e24e8..659ade8c5b948b775ba278837659f10bf66b4844:/distrib/msw/tmake/x11.t diff --git a/distrib/msw/tmake/x11.t b/distrib/msw/tmake/x11.t index 4036206ddc..fd4ebb3957 100644 --- a/distrib/msw/tmake/x11.t +++ b/distrib/msw/tmake/x11.t @@ -13,7 +13,12 @@ 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/; @@ -33,13 +38,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 +62,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 +90,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");