]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/gtk.t
add missing ds? files
[wxWidgets.git] / distrib / msw / tmake / gtk.t
1 #!################################################################################
2 #! File: gtk.t
3 #! Purpose: tmake template file from which src/gtk/files.lst containing the
4 #! list of files for wxGTK library is generated by tmake
5 #! Author: Vadim Zeitlin
6 #! Created: 28.01.00
7 #! Version: $Id$
8 #!################################################################################
9 #${
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxGTK, %wxMOTIF and
12 #! %wxOS2PM hashes.
13 IncludeTemplate("filelist.t");
14
15 #! find all our sources
16 foreach $file (sort keys %wxGeneric) {
17 next if $wxGeneric{$file} =~ /\bNotGTK\b/;
18
19 ($fileobj = $file) =~ s/cp?p?$/\o/;
20
21 $project{"GTK_SOURCES"} .= "generic/" . $file . " ";
22 $project{"GUIOBJS"} .= $fileobj . " ";
23
24 #! also add it to the list of object files used by wxUniv if there
25 #! is no file with the same name among wxUniv own objects
26 my $filereal = $file;
27 if ( $file =~ /^([^.]+)g.cpp$/ ) {
28 $filereal = "$1.cpp";
29 }
30 if ( !exists $wxUNIV{$filereal} ) {
31 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
32 }
33 }
34
35 foreach $file (sort keys %wxCommon) {
36 next if $wxCommon{$file} =~ /\bNotGTK\b/;
37
38 ($fileobj = $file) =~ s/cp?p?$/\o/;
39
40 $project{"GTK_SOURCES"} .= "common/" . $file . " ";
41 $project{"COMMONOBJS"} .= $fileobj . " ";
42 }
43
44 foreach $file (sort keys %wxGTK) {
45 ($fileobj = $file) =~ s/cp?p?$/\o/;
46
47 $project{"GTK_SOURCES"} .= "gtk/" . $file . " ";
48 $project{"GUIOBJS"} .= $fileobj . " ";
49
50 if ( $wxGTK{$file} =~ /\bL\b/ ) {
51 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
52 }
53 }
54
55 foreach $file (sort keys %wxUNIX) {
56 ($fileobj = $file) =~ s/cp?p?$/\o/;
57
58 $project{"GTK_SOURCES"} .= "unix/" . $file . " ";
59 $project{"UNIXOBJS"} .= $fileobj . " ";
60 }
61
62 foreach $file (sort keys %wxHTML) {
63 ($fileobj = $file) =~ s/cp?p?$/\o/;
64
65 $project{"GTK_SOURCES"} .= "html/" . $file . " ";
66 $project{"HTMLOBJS"} .= $fileobj . " ";
67 }
68
69 #! find all our headers
70 foreach $file (sort keys %wxWXINCLUDE) {
71 next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/;
72
73 $project{"GTK_HEADERS"} .= $file . " "
74 }
75
76 foreach $file (sort keys %wxGTKINCLUDE) {
77 $project{"GTK_HEADERS"} .= "gtk/" . $file . " "
78 }
79
80 foreach $file (sort keys %wxGENERICINCLUDE) {
81 next if $wxGENERICINCLUDE{$file} =~ /\bNotGTK\b/;
82
83 $project{"GTK_HEADERS"} .= "generic/" . $file . " "
84 }
85
86 foreach $file (sort keys %wxUNIXINCLUDE) {
87 $project{"GTK_HEADERS"} .= "unix/" . $file . " "
88 }
89
90 foreach $file (sort keys %wxHTMLINCLUDE) {
91 $project{"GTK_HEADERS"} .= "html/" . $file . " "
92 }
93
94 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
95 $project{"GTK_HEADERS"} .= "protocol/" . $file . " "
96 }
97 #$}
98 # This file was automatically generated by tmake
99 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
100 ALL_SOURCES = \
101 #$ ExpandList("GTK_SOURCES");
102
103 ALL_HEADERS = \
104 #$ ExpandList("GTK_HEADERS");
105
106 COMMONOBJS = \
107 #$ ExpandList("COMMONOBJS");
108
109 GUIOBJS = \
110 #$ ExpandList("GUIOBJS");
111
112 GUI_LOWLEVEL_OBJS = \
113 #$ ExpandList("GUI_LOWLEVEL_OBJS");
114
115 UNIXOBJS = \
116 #$ ExpandList("UNIXOBJS");
117
118 HTMLOBJS = \
119 #$ ExpandList("HTMLOBJS");
120