]>
Commit | Line | Data |
---|---|---|
17533c89 VZ |
1 | #!############################################################################# |
2 | #! File: vc6msw.t | |
3 | #! Purpose: tmake template file from which the VC++ 6.0 project file for | |
4 | #! building all configurations of wxMSW library wxWindows.dsp | |
5 | #! is generated by running | |
6 | #! tmake -t vc6msw wxwin.pro -o wxWindows.dsp | |
7 | #! Author: Vadim Zeitlin | |
8 | #! Created: 29.09.01 | |
9 | #! Version: $Id$ | |
10 | #!############################################################################# | |
11 | #${ | |
12 | #! include the code which parses filelist.txt file and initializes | |
13 | #! %wxCommon, %wxGeneric and %wxMSW hashes. | |
14 | IncludeTemplate("filelist.t"); | |
15 | ||
16 | #! now transform these hashes into $project tags | |
17 | foreach $file (sort keys %wxGeneric) { | |
18 | next if $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/; | |
19 | $project{"WXGENERICSRCS"} .= $file . " " | |
20 | } | |
21 | ||
22 | foreach $file (sort keys %wxCommon) { | |
bb16e814 | 23 | next if $wxCommon{$file} =~ /\b(16|U)\b/; |
17533c89 VZ |
24 | |
25 | my $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXCOMMONSRCS"; | |
26 | $project{$tag} .= $file . " " | |
27 | } | |
28 | ||
29 | foreach $file (sort keys %wxMSW) { | |
30 | next if $wxMSW{$file} =~ /\b16\b/; | |
31 | ||
32 | my $tag; | |
33 | if ( $wxMSW{$file} =~ /\bO\b/ ) { $tag = "WXOLESRCS" } | |
34 | else { $tag = $file =~ /\.c$/ ? "WXMSWCSRCS" : "WXMSWSRCS" } | |
35 | $project{$tag} .= $file . " " | |
36 | } | |
37 | ||
38 | foreach $file (sort keys %wxHTML) { | |
bb16e814 | 39 | next if $wxHTML{$file} =~ /\b(16|U)\b/; |
17533c89 VZ |
40 | $project{"WXHTMLSRCS"} .= $file . " " |
41 | } | |
42 | ||
43 | foreach $file (sort keys %wxWXINCLUDE) { | |
44 | next if $file =~ /setup.h/; | |
45 | next if $file =~ /[^.]*.cpp$/; | |
46 | $project{"WXHEADERS"} .= $file . " " | |
47 | } | |
48 | ||
49 | foreach $file (sort keys %wxGENERICINCLUDE) { | |
50 | next if $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/; | |
51 | $project{"WXGENERICHEADERS"} .= $file . " " | |
52 | } | |
53 | ||
54 | foreach $file (sort keys %wxMSWINCLUDE) { | |
55 | next if $file =~ /setup0?.h/; | |
56 | $project{"WXMSWHEADERS"} .= $file . " " | |
57 | } | |
58 | ||
59 | foreach $file (sort keys %wxHTMLINCLUDE) { | |
60 | $project{"WXHTMLHEADERS"} .= $file . " " | |
61 | } | |
b3ca11f7 | 62 | |
c3f64df2 | 63 | $project{"WXVERSION"} = "250"; |
17533c89 VZ |
64 | #$} |
65 | # Microsoft Developer Studio Project File - Name="wxWindows" - Package Owner=<4> | |
66 | # Microsoft Developer Studio Generated Build File, Format Version 6.00 | |
67 | # ** DO NOT EDIT ** | |
68 | ||
69 | # TARGTYPE "Win32 (x86) Static Library" 0x0104 | |
70 | # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 | |
71 | ||
72 | CFG=wxWindows - Win32 Debug | |
73 | !MESSAGE This is not a valid makefile. To build this project using NMAKE, | |
74 | !MESSAGE use the Export Makefile command and run | |
75 | !MESSAGE | |
76 | !MESSAGE NMAKE /f "wxWindows.mak". | |
77 | !MESSAGE | |
78 | !MESSAGE You can specify a configuration when running NMAKE | |
79 | !MESSAGE by defining the macro CFG on the command line. For example: | |
80 | !MESSAGE | |
81 | !MESSAGE NMAKE /f "wxWindows.mak" CFG="wxWindows - Win32 Debug" | |
82 | !MESSAGE | |
83 | !MESSAGE Possible choices for configuration are: | |
84 | !MESSAGE | |
5e46051f VZ |
85 | !MESSAGE "wxWindows - Win32 Release Unicode DLL" (based on "Win32 (x86) Dynamic-Link Library") |
86 | !MESSAGE "wxWindows - Win32 Debug Unicode DLL" (based on "Win32 (x86) Dynamic-Link Library") | |
87 | !MESSAGE "wxWindows - Win32 Release Unicode" (based on "Win32 (x86) Static Library") | |
88 | !MESSAGE "wxWindows - Win32 Debug Unicode" (based on "Win32 (x86) Static Library") | |
17533c89 VZ |
89 | !MESSAGE "wxWindows - Win32 Release DLL" (based on "Win32 (x86) Dynamic-Link Library") |
90 | !MESSAGE "wxWindows - Win32 Debug DLL" (based on "Win32 (x86) Dynamic-Link Library") | |
91 | !MESSAGE "wxWindows - Win32 Release" (based on "Win32 (x86) Static Library") | |
92 | !MESSAGE "wxWindows - Win32 Debug" (based on "Win32 (x86) Static Library") | |
93 | !MESSAGE | |
94 | ||
95 | # Begin Project | |
96 | # PROP AllowPerConfigDependencies 0 | |
8e7b0418 VZ |
97 | # PROP Scc_ProjName "" |
98 | # PROP Scc_LocalPath "" | |
17533c89 VZ |
99 | CPP=cl.exe |
100 | RSC=rc.exe | |
101 | ||
5e46051f VZ |
102 | !IF "$(CFG)" == "wxWindows - Win32 Release Unicode DLL" |
103 | ||
104 | # PROP BASE Use_MFC 0 | |
105 | # PROP BASE Use_Debug_Libraries 0 | |
106 | # PROP BASE Output_Dir "../lib" | |
107 | # PROP BASE Intermediate_Dir "../ReleaseUnicodeDll" | |
108 | # PROP BASE Target_Dir "" | |
109 | # PROP Use_MFC 0 | |
110 | # PROP Use_Debug_Libraries 0 | |
111 | # PROP Output_Dir "../lib" | |
112 | # PROP Intermediate_Dir "../ReleaseUnicodeDll" | |
113 | # PROP Ignore_Export_Lib 0 | |
114 | # PROP Target_Dir "" | |
115 | # ADD BASE CPP /nologo /MD /W4 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WXWINDLL_EXPORTS" /YX /FD /c | |
8976cbbc | 116 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/mswdllu" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "_USRDLL" /D "WIN32" /D "NDEBUG" /D WINVER=0x0400 /D "STRICT" /D "WXMAKINGDLL" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
117 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
118 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | |
119 | # ADD BASE RSC /l 0x409 /d "NDEBUG" | |
120 | # ADD RSC /l 0x409 /i "../include" /d "NDEBUG" | |
121 | BSC32=bscmake.exe | |
122 | # ADD BASE BSC32 /nologo | |
123 | # ADD BSC32 /nologo | |
124 | LINK32=link.exe | |
125 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib ..\lib\jpeg.lib ..\lib\tiff.lib ..\lib\png.lib ..\lib\regex.lib ..\lib\zlib.lib /nologo /dll /machine:I386 /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'u.dll"' | |
126 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib advapi32.lib comdlg32.lib shell32.lib ole32.lib oleaut32.lib odbc32.lib uuid.lib rpcrt4.lib comctl32.lib wsock32.lib winmm.lib ..\lib\jpeg.lib ..\lib\tiff.lib ..\lib\png.lib ..\lib\regex.lib ..\lib\zlib.lib /nologo /version:2.3 /dll /machine:I386 /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'u.dll"' | |
127 | ||
128 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug Unicode DLL" | |
129 | ||
130 | # PROP BASE Use_MFC 0 | |
131 | # PROP BASE Use_Debug_Libraries 1 | |
132 | # PROP BASE Output_Dir "../lib" | |
133 | # PROP BASE Intermediate_Dir "../DebugUnicodeDll" | |
134 | # PROP BASE Target_Dir "" | |
135 | # PROP Use_MFC 0 | |
136 | # PROP Use_Debug_Libraries 1 | |
137 | # PROP Output_Dir "../lib" | |
138 | # PROP Intermediate_Dir "../DebugUnicodeDll" | |
139 | # PROP Ignore_Export_Lib 0 | |
140 | # PROP Target_Dir "" | |
141 | # ADD BASE CPP /nologo /MDd /W4 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WXWINDLL_EXPORTS" /YX /FD /GZ /c | |
8976cbbc | 142 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/mswdllud" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D WINVER=0x0400 /D "STRICT" /D "WXMAKINGDLL" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
143 | # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
144 | # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | |
145 | # ADD BASE RSC /l 0x409 /d "_DEBUG" | |
146 | # ADD RSC /l 0x409 /i "../include" /d "_DEBUG" | |
147 | BSC32=bscmake.exe | |
148 | # ADD BASE BSC32 /nologo | |
149 | # ADD BSC32 /nologo | |
150 | LINK32=link.exe | |
151 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib ..\lib\jpegd.lib ..\lib\tiffd.lib ..\lib\pngd.lib ..\lib\regexd.lib ..\lib\zlibd.lib /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'ud.dll"' | |
152 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib advapi32.lib comdlg32.lib shell32.lib ole32.lib oleaut32.lib odbc32.lib uuid.lib rpcrt4.lib comctl32.lib wsock32.lib winmm.lib ..\lib\jpegd.lib ..\lib\tiffd.lib ..\lib\pngd.lib ..\lib\regexd.lib ..\lib\zlibd.lib /nologo /version:2.3 /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'ud.dll"' | |
153 | ||
154 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release Unicode" | |
155 | ||
156 | # PROP BASE Use_MFC 0 | |
157 | # PROP BASE Use_Debug_Libraries 0 | |
158 | # PROP BASE Output_Dir "../lib" | |
159 | # PROP BASE Intermediate_Dir "../ReleaseUnicode" | |
160 | # PROP BASE Target_Dir "" | |
161 | # PROP Use_MFC 0 | |
162 | # PROP Use_Debug_Libraries 0 | |
163 | # PROP Output_Dir "../lib" | |
164 | # PROP Intermediate_Dir "../ReleaseUnicode" | |
165 | # PROP Target_Dir "" | |
8976cbbc | 166 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c |
5e46051f VZ |
167 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/mswu" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "WIN32" /D "NDEBUG" /D WINVER=0x0400 /D "STRICT" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
168 | # ADD BASE RSC /l 0x409 | |
169 | # ADD RSC /l 0x409 | |
170 | BSC32=bscmake.exe | |
171 | # ADD BASE BSC32 /nologo | |
172 | # ADD BSC32 /nologo | |
173 | LIB32=link.exe -lib | |
174 | # ADD BASE LIB32 /nologo | |
175 | # ADD LIB32 /nologo /out:"..\lib\wxmswu.lib" | |
176 | ||
177 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug Unicode" | |
178 | ||
179 | # PROP BASE Use_MFC 0 | |
180 | # PROP BASE Use_Debug_Libraries 1 | |
181 | # PROP BASE Output_Dir "../lib" | |
182 | # PROP BASE Intermediate_Dir "../DebugUnicode" | |
183 | # PROP BASE Target_Dir "" | |
184 | # PROP Use_MFC 0 | |
185 | # PROP Use_Debug_Libraries 1 | |
186 | # PROP Output_Dir "../lib" | |
187 | # PROP Intermediate_Dir "../DebugUnicode" | |
188 | # PROP Target_Dir "" | |
189 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c | |
190 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/mswud" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "WIN32" /D "_DEBUG" /D "__WXDEBUG__" /D WINVER=0x0400 /D "STRICT" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c | |
191 | # ADD BASE RSC /l 0x409 | |
192 | # ADD RSC /l 0x409 | |
193 | BSC32=bscmake.exe | |
194 | # ADD BASE BSC32 /nologo | |
195 | # ADD BSC32 /nologo | |
196 | LIB32=link.exe -lib | |
197 | # ADD BASE LIB32 /nologo | |
198 | # ADD LIB32 /nologo /out:"..\lib\wxmswud.lib" | |
199 | ||
200 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release DLL" | |
17533c89 VZ |
201 | |
202 | # PROP BASE Use_MFC 0 | |
203 | # PROP BASE Use_Debug_Libraries 0 | |
204 | # PROP BASE Output_Dir "../lib" | |
205 | # PROP BASE Intermediate_Dir "../ReleaseDll" | |
206 | # PROP BASE Target_Dir "" | |
207 | # PROP Use_MFC 0 | |
208 | # PROP Use_Debug_Libraries 0 | |
209 | # PROP Output_Dir "../lib" | |
5e46051f | 210 | # PROP Intermediate_Dir "../ReleaseDll" |
17533c89 VZ |
211 | # PROP Ignore_Export_Lib 0 |
212 | # PROP Target_Dir "" | |
213 | # ADD BASE CPP /nologo /MD /W4 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WXWINDLL_EXPORTS" /YX /FD /c | |
8976cbbc | 214 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/mswdll" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "_USRDLL" /D "WIN32" /D "NDEBUG" /D WINVER=0x0400 /D "STRICT" /D "WXMAKINGDLL" /Yu"wx/wxprec.h" /FD /c |
17533c89 VZ |
215 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
216 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | |
217 | # ADD BASE RSC /l 0x409 /d "NDEBUG" | |
218 | # ADD RSC /l 0x409 /i "../include" /d "NDEBUG" | |
219 | BSC32=bscmake.exe | |
220 | # ADD BASE BSC32 /nologo | |
221 | # ADD BSC32 /nologo | |
222 | LINK32=link.exe | |
223 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib ..\lib\jpeg.lib ..\lib\tiff.lib ..\lib\png.lib ..\lib\regex.lib ..\lib\zlib.lib /nologo /dll /machine:I386 /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . '.dll"' | |
224 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib advapi32.lib comdlg32.lib shell32.lib ole32.lib oleaut32.lib odbc32.lib uuid.lib rpcrt4.lib comctl32.lib wsock32.lib winmm.lib ..\lib\jpeg.lib ..\lib\tiff.lib ..\lib\png.lib ..\lib\regex.lib ..\lib\zlib.lib /nologo /version:2.3 /dll /machine:I386 /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . '.dll"' | |
225 | ||
226 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug DLL" | |
227 | ||
228 | # PROP BASE Use_MFC 0 | |
229 | # PROP BASE Use_Debug_Libraries 1 | |
230 | # PROP BASE Output_Dir "../lib" | |
231 | # PROP BASE Intermediate_Dir "../DebugDll" | |
232 | # PROP BASE Target_Dir "" | |
233 | # PROP Use_MFC 0 | |
234 | # PROP Use_Debug_Libraries 1 | |
235 | # PROP Output_Dir "../lib" | |
236 | # PROP Intermediate_Dir "../DebugDll" | |
237 | # PROP Ignore_Export_Lib 0 | |
238 | # PROP Target_Dir "" | |
239 | # ADD BASE CPP /nologo /MDd /W4 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WXWINDLL_EXPORTS" /YX /FD /GZ /c | |
8976cbbc | 240 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/mswdlld" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "_USRDLL" /D "WIN32" /D "_DEBUG" /D WINVER=0x0400 /D "STRICT" /D "WXMAKINGDLL" /Yu"wx/wxprec.h" /FD /c |
17533c89 VZ |
241 | # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
242 | # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | |
243 | # ADD BASE RSC /l 0x409 /d "_DEBUG" | |
244 | # ADD RSC /l 0x409 /i "../include" /d "_DEBUG" | |
245 | BSC32=bscmake.exe | |
246 | # ADD BASE BSC32 /nologo | |
247 | # ADD BSC32 /nologo | |
248 | LINK32=link.exe | |
249 | # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib ..\lib\jpegd.lib ..\lib\tiffd.lib ..\lib\pngd.lib ..\lib\regexd.lib ..\lib\zlibd.lib /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'd.dll"' | |
250 | # ADD LINK32 kernel32.lib user32.lib gdi32.lib advapi32.lib comdlg32.lib shell32.lib ole32.lib oleaut32.lib odbc32.lib uuid.lib rpcrt4.lib comctl32.lib wsock32.lib winmm.lib ..\lib\jpegd.lib ..\lib\tiffd.lib ..\lib\pngd.lib ..\lib\regexd.lib ..\lib\zlibd.lib /nologo /version:2.3 /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxmsw#$ $text = $project{"WXVERSION"} . 'd.dll"' | |
251 | ||
252 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release" | |
253 | ||
254 | # PROP BASE Use_MFC 0 | |
255 | # PROP BASE Use_Debug_Libraries 0 | |
5e46051f | 256 | # PROP BASE Output_Dir "../lib" |
17533c89 VZ |
257 | # PROP BASE Intermediate_Dir "../Release" |
258 | # PROP BASE Target_Dir "" | |
259 | # PROP Use_MFC 0 | |
260 | # PROP Use_Debug_Libraries 0 | |
5e46051f | 261 | # PROP Output_Dir "../lib" |
17533c89 VZ |
262 | # PROP Intermediate_Dir "../Release" |
263 | # PROP Target_Dir "" | |
8976cbbc | 264 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c |
17533c89 VZ |
265 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/msw" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "WIN32" /D "NDEBUG" /D WINVER=0x0400 /D "STRICT" /Yu"wx/wxprec.h" /FD /c |
266 | # ADD BASE RSC /l 0x409 | |
267 | # ADD RSC /l 0x409 | |
268 | BSC32=bscmake.exe | |
269 | # ADD BASE BSC32 /nologo | |
270 | # ADD BSC32 /nologo | |
271 | LIB32=link.exe -lib | |
272 | # ADD BASE LIB32 /nologo | |
273 | # ADD LIB32 /nologo /out:"..\lib\wxmsw.lib" | |
274 | ||
275 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug" | |
276 | ||
277 | # PROP BASE Use_MFC 0 | |
278 | # PROP BASE Use_Debug_Libraries 1 | |
5e46051f | 279 | # PROP BASE Output_Dir "../lib" |
17533c89 VZ |
280 | # PROP BASE Intermediate_Dir "../Debug" |
281 | # PROP BASE Target_Dir "" | |
282 | # PROP Use_MFC 0 | |
283 | # PROP Use_Debug_Libraries 1 | |
5e46051f | 284 | # PROP Output_Dir "../lib" |
17533c89 VZ |
285 | # PROP Intermediate_Dir "../Debug" |
286 | # PROP Target_Dir "" | |
287 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c | |
288 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/mswd" /I "../include" /I "./zlib" /I "./jpeg" /I "./png" /I "./regex" /I "./tiff" /D "WIN32" /D "_DEBUG" /D "__WXDEBUG__" /D WINVER=0x0400 /D "STRICT" /Yu"wx/wxprec.h" /FD /c | |
289 | # ADD BASE RSC /l 0x409 | |
290 | # ADD RSC /l 0x409 | |
291 | BSC32=bscmake.exe | |
292 | # ADD BASE BSC32 /nologo | |
293 | # ADD BSC32 /nologo | |
294 | LIB32=link.exe -lib | |
295 | # ADD BASE LIB32 /nologo | |
296 | # ADD LIB32 /nologo /out:"..\lib\wxmswd.lib" | |
297 | ||
298 | !ENDIF | |
299 | ||
300 | # Begin Target | |
301 | ||
5e46051f VZ |
302 | # Name "wxWindows - Win32 Release Unicode DLL" |
303 | # Name "wxWindows - Win32 Debug Unicode DLL" | |
304 | # Name "wxWindows - Win32 Release Unicode" | |
305 | # Name "wxWindows - Win32 Debug Unicode" | |
17533c89 VZ |
306 | # Name "wxWindows - Win32 Release DLL" |
307 | # Name "wxWindows - Win32 Debug DLL" | |
308 | # Name "wxWindows - Win32 Release" | |
309 | # Name "wxWindows - Win32 Debug" | |
310 | # Begin Group "Common Files" | |
311 | ||
312 | # PROP Default_Filter "" | |
313 | #$ ExpandGlue("WXCOMMONSRCS", "# Begin Source File\n\nSOURCE=.\\common\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\common\\", "\n# End Source File\n"); | |
314 | #$ ExpandGlue("WXCSRCS", "# Begin Source File\n\nSOURCE=.\\common\\", "\n# SUBTRACT CPP /YX /Yc /Yu\n# End Source File\n# Begin Source File\n\nSOURCE=.\\common\\", "\n# SUBTRACT CPP /YX /Yc /Yu\n# End Source File\n"); | |
315 | # Begin Source File | |
316 | ||
5e46051f VZ |
317 | SOURCE=.\common\dosyacc.c |
318 | # ADD CPP /W1 /D "USE_DEFINE" /D "IDE_INVOKED" | |
17533c89 VZ |
319 | # SUBTRACT CPP /YX /Yc /Yu |
320 | # End Source File | |
321 | # End Group | |
322 | # Begin Group "Generic Files" | |
323 | ||
324 | # PROP Default_Filter "" | |
325 | #$ ExpandGlue("WXGENERICSRCS", "# Begin Source File\n\nSOURCE=.\\generic\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\generic\\", "\n# End Source File\n"); | |
326 | # End Group | |
327 | # Begin Group "wxHTML Files" | |
328 | ||
329 | # PROP Default_Filter "" | |
330 | #$ ExpandGlue("WXHTMLSRCS", "# Begin Source File\n\nSOURCE=.\\html\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\html\\", "\n# End Source File\n"); | |
331 | # End Group | |
332 | # Begin Group "MSW Files" | |
333 | ||
334 | # PROP Default_Filter "" | |
335 | # Begin Source File | |
336 | ||
337 | SOURCE=.\msw\dummy.cpp | |
338 | # ADD CPP /Yc"wx/wxprec.h" | |
339 | # End Source File | |
340 | #$ ExpandGlue("WXMSWSRCS", "# Begin Source File\n\nSOURCE=.\\msw\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\msw\\", "\n# End Source File\n"); | |
341 | #$ ExpandGlue("WXMSWCSRCS", "# Begin Source File\n\nSOURCE=.\\msw\\", "\n# SUBTRACT CPP /YX /Yc /Yu\n# End Source File\n# Begin Source File\n\nSOURCE=.\\msw\\", "\n# SUBTRACT CPP /YX /Yc /Yu\n# End Source File\n"); | |
17533c89 VZ |
342 | # Begin Group "OLE Files" |
343 | ||
344 | # PROP Default_Filter "" | |
345 | #$ ExpandGlue("WXOLESRCS", "# Begin Source File\n\nSOURCE=.\\msw\\ole\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\msw\\ole\\", "\n# End Source File\n"); | |
346 | # End Group | |
f357c0d4 | 347 | # End Group |
17533c89 VZ |
348 | # Begin Group "Headers" |
349 | ||
350 | # PROP Default_Filter "" | |
351 | # Begin Group "Setup" | |
352 | ||
353 | # PROP Default_Filter "" | |
354 | # Begin Source File | |
355 | ||
4fcf087d | 356 | SOURCE=..\include\wx\msw\setup.h |
5e46051f | 357 | !IF "$(CFG)" == "wxWindows - Win32 Release Unicode DLL" |
b763ff43 | 358 | # Begin Custom Build - Creating ..\lib\mswdllu\wx\setup.h from $(InputPath) |
4fcf087d | 359 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
360 | |
361 | "../lib/mswdllu/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 362 | copy "$(InputPath)" ..\lib\mswdllu\wx\setup.h |
5e46051f VZ |
363 | |
364 | # End Custom Build | |
365 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug Unicode DLL" | |
b763ff43 | 366 | # Begin Custom Build - Creating ..\lib\mswdllud\wx\setup.h from $(InputPath) |
4fcf087d | 367 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
368 | |
369 | "../lib/mswdllud/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 370 | copy "$(InputPath)" ..\lib\mswdllud\wx\setup.h |
5e46051f VZ |
371 | |
372 | # End Custom Build | |
373 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release Unicode" | |
b763ff43 | 374 | # Begin Custom Build - Creating ..\lib\mswu\wx\setup.h from $(InputPath) |
4fcf087d | 375 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
376 | |
377 | "../lib/mswu/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 378 | copy "$(InputPath)" ..\lib\mswu\wx\setup.h |
5e46051f VZ |
379 | |
380 | # End Custom Build | |
381 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug Unicode" | |
b763ff43 | 382 | # Begin Custom Build - Creating ..\lib\mswud\wx\setup.h from $(InputPath) |
4fcf087d | 383 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
384 | |
385 | "../lib/mswud/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 386 | copy "$(InputPath)" ..\lib\mswud\wx\setup.h |
5e46051f VZ |
387 | |
388 | # End Custom Build | |
389 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release DLL" | |
b763ff43 | 390 | # Begin Custom Build - Creating ..\lib\mswdll\wx\setup.h from $(InputPath) |
4fcf087d | 391 | InputPath=..\include\wx\msw\setup.h |
17533c89 VZ |
392 | |
393 | "../lib/mswdll/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 394 | copy "$(InputPath)" ..\lib\mswdll\wx\setup.h |
17533c89 VZ |
395 | |
396 | # End Custom Build | |
397 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug DLL" | |
b763ff43 | 398 | # Begin Custom Build - Creating ..\lib\mswdlld\wx\setup.h from $(InputPath) |
4fcf087d | 399 | InputPath=..\include\wx\msw\setup.h |
17533c89 VZ |
400 | |
401 | "../lib/mswdlld/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 402 | copy "$(InputPath)" ..\lib\mswdlld\wx\setup.h |
17533c89 VZ |
403 | |
404 | # End Custom Build | |
405 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Release" | |
b763ff43 | 406 | # Begin Custom Build - Creating ..\lib\msw\wx\setup.h from $(InputPath) |
4fcf087d | 407 | InputPath=..\include\wx\msw\setup.h |
17533c89 VZ |
408 | |
409 | "../lib/msw/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 410 | copy "$(InputPath)" ..\lib\msw\wx\setup.h |
17533c89 VZ |
411 | |
412 | # End Custom Build | |
413 | !ELSEIF "$(CFG)" == "wxWindows - Win32 Debug" | |
b763ff43 | 414 | # Begin Custom Build - Creating ..\lib\mswd\wx\setup.h from $(InputPath) |
4fcf087d | 415 | InputPath=..\include\wx\msw\setup.h |
17533c89 VZ |
416 | |
417 | "../lib/mswd/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 418 | copy "$(InputPath)" ..\lib\mswd\wx\setup.h |
17533c89 VZ |
419 | |
420 | # End Custom Build | |
421 | !ENDIF | |
422 | # End Source File | |
423 | # End Group | |
424 | # Begin Group "Common" | |
425 | ||
426 | # PROP Default_Filter "" | |
427 | #$ ExpandGlue("WXHEADERS", "# Begin Source File\n\nSOURCE=..\\include\\wx\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=..\\include\\wx\\", "\n# End Source File\n"); | |
428 | # End Group | |
429 | # Begin Group "MSW" | |
430 | ||
431 | # PROP Default_Filter "" | |
432 | #$ ExpandGlue("WXMSWHEADERS", "# Begin Source File\n\nSOURCE=..\\include\\wx\\msw\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=..\\include\\wx\\msw\\", "\n# End Source File\n"); | |
433 | # End Group | |
434 | # Begin Group "Generic" | |
435 | ||
436 | # PROP Default_Filter "" | |
437 | #$ ExpandGlue("WXGENERICHEADERS", "# Begin Source File\n\nSOURCE=..\\include\\wx\\generic\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=..\\include\\wx\\generic\\", "\n# End Source File\n"); | |
438 | # End Group | |
439 | # Begin Group "HTML" | |
440 | ||
441 | # PROP Default_Filter "" | |
442 | #$ ExpandGlue("WXHTMLHEADERS", "# Begin Source File\n\nSOURCE=..\\include\\wx\\html\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=..\\include\\wx\\html\\", "\n# End Source File\n"); | |
443 | # End Group | |
444 | # End Group | |
445 | # End Target | |
446 | # End Project | |
447 | #! vi: set sta ts=8 sw=4 noet nolist tw=0 ft=perl: |