X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7529690de8d03e2f4ae22976e76c8c60e5b68be2..e195c8c95fb154d035bab400952fc81c62439549:/distrib/msw/tmake/gtk.t diff --git a/distrib/msw/tmake/gtk.t b/distrib/msw/tmake/gtk.t index 8e87b60025..9fd210fc09 100644 --- a/distrib/msw/tmake/gtk.t +++ b/distrib/msw/tmake/gtk.t @@ -44,7 +44,12 @@ $project{"GTK_SOURCES"} .= "gtk/" . $file . " "; $project{"GUIOBJS"} .= $fileobj . " "; - $project{"GUIDEPS"} .= $filedep . " " + $project{"GUIDEPS"} .= $filedep . " "; + + if ( $wxGTK{$file} =~ /\bL\b/ ) { + $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " "; + $project{"GUI_LOWLEVEL_DEPS"} .= $filedep . " "; + } } foreach $file (sort keys %wxUNIX) { @@ -64,7 +69,7 @@ $project{"HTMLOBJS"} .= $fileobj . " "; $project{"HTMLDEPS"} .= $filedep . " " } - + #! find all our headers foreach $file (sort keys %wxWXINCLUDE) { next if $wxWXINCLUDE{$file} =~ /\bR\b/; @@ -118,6 +123,12 @@ GUIOBJS = \ GUIDEPS = \ #$ ExpandList("GUIDEPS"); +GUI_LOWLEVEL_OBJS = \ + #$ ExpandList("GUI_LOWLEVEL_OBJS"); + +GUI_LOWLEVEL_DEPS = \ + #$ ExpandList("GUI_LOWLEVEL_DEPS"); + UNIXOBJS = \ #$ ExpandList("UNIXOBJS");