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