X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/422107f900c335578c56680520a4cb3eda6640d5..3a0958b1657f6105b1efcf04032070143b87af80:/distrib/msw/tmake/gtk.t diff --git a/distrib/msw/tmake/gtk.t b/distrib/msw/tmake/gtk.t index 5bdc9e97ca..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,9 +69,11 @@ $project{"HTMLOBJS"} .= $fileobj . " "; $project{"HTMLDEPS"} .= $filedep . " " } - + #! find all our headers foreach $file (sort keys %wxWXINCLUDE) { + next if $wxWXINCLUDE{$file} =~ /\bR\b/; + $project{"GTK_HEADERS"} .= $file . " " } @@ -116,6 +123,12 @@ GUIOBJS = \ GUIDEPS = \ #$ ExpandList("GUIDEPS"); +GUI_LOWLEVEL_OBJS = \ + #$ ExpandList("GUI_LOWLEVEL_OBJS"); + +GUI_LOWLEVEL_DEPS = \ + #$ ExpandList("GUI_LOWLEVEL_DEPS"); + UNIXOBJS = \ #$ ExpandList("UNIXOBJS");