]>
Commit | Line | Data |
---|---|---|
b568d04f VZ |
1 | #!############################################################################# |
2 | #! File: vc6base.t | |
3 | #! Purpose: tmake template file from which wxBase.dsp is generated by running | |
4 | #! tmake -t vc6base wxwin.pro -o wxBase.dsp | |
5 | #! Author: Vadim Zeitlin | |
6 | #! Created: 27.11.99 | |
7 | #! Version: $Id$ | |
8 | #!############################################################################# | |
9 | #${ | |
a6861c1d VZ |
10 | use lib './lib'; |
11 | use wxVersion qw(GetVersion); | |
12 | ||
b568d04f VZ |
13 | #! include the code which parses filelist.txt file and initializes |
14 | #! %wxCommon, %wxGeneric and %wxMSW hashes. | |
15 | IncludeTemplate("filelist.t"); | |
16 | ||
17 | #! now transform these hashes into $project tags | |
18 | foreach $file (sort keys %wxCommon) { | |
5e46051f | 19 | next if $wxCommon{$file} !~ /\bB\b/; |
b568d04f | 20 | |
5e46051f VZ |
21 | my $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXCOMMONSRCS"; |
22 | $project{$tag} .= $file . " " | |
b568d04f VZ |
23 | } |
24 | ||
25 | foreach $file (sort keys %wxMSW) { | |
5e46051f | 26 | next if $wxMSW{$file} !~ /\bB\b/; |
b568d04f | 27 | |
5e46051f VZ |
28 | my $tag = $file =~ /\.c$/ ? "WXMSWCSRCS" : "WXMSWSRCS"; |
29 | $project{$tag} .= $file . " " | |
b568d04f VZ |
30 | } |
31 | ||
32 | foreach $file (sort keys %wxBase) { | |
5e46051f VZ |
33 | my $tag = $file =~ /\.c$/ ? "WXCSRCS" : "WXCOMMONSRCS"; |
34 | $project{$tag} .= $file . " " | |
b568d04f | 35 | } |
0797afee VZ |
36 | |
37 | foreach $file (sort keys %wxWXINCLUDE) { | |
5e46051f VZ |
38 | next if $wxWXINCLUDE{$file} !~ /\bB\b/; |
39 | next if $file =~ /setup.h/; | |
40 | next if $file =~ /[^.]*.cpp$/; | |
41 | $project{"WXHEADERS"} .= $file . " " | |
0797afee VZ |
42 | } |
43 | ||
44 | foreach $file (sort keys %wxMSWINCLUDE) { | |
5e46051f VZ |
45 | next if $wxMSWINCLUDE{$file} !~ /\bB\b/; |
46 | next if $file =~ /setup0?.h/; | |
47 | $project{"WXMSWHEADERS"} .= $file . " " | |
0797afee | 48 | } |
5e46051f | 49 | |
a6861c1d VZ |
50 | #! LINK_VERSION is the value of the linker /version switch, |
51 | #! DLL_VERSION is the version string for the DLL filename | |
52 | my %versions = GetVersion(); | |
53 | my ($verMaj, $verMin) = ( $versions{'MAJOR'}, $versions{'MINOR'} ); | |
54 | $project{"LINK_VERSION"} = "$verMaj.$verMin"; | |
11739586 | 55 | $project{"DLL_VERSION"} = "$verMaj$verMin" . $versions{'MICRO_IF_UNSTABLE'}; |
b568d04f VZ |
56 | #$} |
57 | # Microsoft Developer Studio Project File - Name="wxBase" - Package Owner=<4> | |
58 | # Microsoft Developer Studio Generated Build File, Format Version 6.00 | |
59 | # ** DO NOT EDIT ** | |
60 | ||
61 | # TARGTYPE "Win32 (x86) Static Library" 0x0104 | |
5e46051f | 62 | # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 |
b568d04f VZ |
63 | |
64 | CFG=wxBase - Win32 Debug | |
65 | !MESSAGE This is not a valid makefile. To build this project using NMAKE, | |
66 | !MESSAGE use the Export Makefile command and run | |
67 | !MESSAGE | |
68 | !MESSAGE NMAKE /f "wxBase.mak". | |
69 | !MESSAGE | |
70 | !MESSAGE You can specify a configuration when running NMAKE | |
71 | !MESSAGE by defining the macro CFG on the command line. For example: | |
72 | !MESSAGE | |
73 | !MESSAGE NMAKE /f "wxBase.mak" CFG="wxBase - Win32 Debug" | |
74 | !MESSAGE | |
75 | !MESSAGE Possible choices for configuration are: | |
76 | !MESSAGE | |
5e46051f VZ |
77 | !MESSAGE "wxBase - Win32 Release Unicode DLL" (based on "Win32 (x86) Dynamic-Link Library") |
78 | !MESSAGE "wxBase - Win32 Debug Unicode DLL" (based on "Win32 (x86) Dynamic-Link Library") | |
79 | !MESSAGE "wxBase - Win32 Release Unicode" (based on "Win32 (x86) Static Library") | |
80 | !MESSAGE "wxBase - Win32 Debug Unicode" (based on "Win32 (x86) Static Library") | |
81 | !MESSAGE "wxBase - Win32 Release DLL" (based on "Win32 (x86) Dynamic-Link Library") | |
82 | !MESSAGE "wxBase - Win32 Debug DLL" (based on "Win32 (x86) Dynamic-Link Library") | |
b568d04f VZ |
83 | !MESSAGE "wxBase - Win32 Release" (based on "Win32 (x86) Static Library") |
84 | !MESSAGE "wxBase - Win32 Debug" (based on "Win32 (x86) Static Library") | |
85 | !MESSAGE | |
86 | ||
87 | # Begin Project | |
88 | # PROP AllowPerConfigDependencies 0 | |
8e7b0418 | 89 | # PROP Scc_ProjName "" |
b568d04f VZ |
90 | # PROP Scc_LocalPath "" |
91 | CPP=cl.exe | |
92 | RSC=rc.exe | |
93 | ||
5e46051f VZ |
94 | !IF "$(CFG)" == "wxBase - Win32 Release Unicode DLL" |
95 | ||
96 | # PROP BASE Use_MFC 0 | |
97 | # PROP BASE Use_Debug_Libraries 0 | |
98 | # PROP BASE Output_Dir "../lib" | |
99 | # PROP BASE Intermediate_Dir "../BaseReleaseUnicodeDll" | |
100 | # PROP BASE Target_Dir "" | |
101 | # PROP Use_MFC 0 | |
102 | # PROP Use_Debug_Libraries 0 | |
103 | # PROP Output_Dir "../lib" | |
104 | # PROP Intermediate_Dir "../BaseReleaseUnicodeDll" | |
105 | # PROP Ignore_Export_Lib 0 | |
106 | # PROP Target_Dir "" | |
7de3c469 | 107 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "WXBASEDLL_EXPORTS" /YX /FD /c |
63bd679b | 108 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/basedllu" /I "../include" /I "./regex" /I "./zlib" /D "NDEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /D "WXMAKINGDLL" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
109 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
110 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | |
111 | # ADD BASE RSC /l 0x409 /d "NDEBUG" | |
112 | # ADD RSC /l 0x409 /i "../include" /d "NDEBUG" | |
113 | BSC32=bscmake.exe | |
114 | # ADD BASE BSC32 /nologo | |
115 | # ADD BSC32 /nologo | |
116 | LINK32=link.exe | |
a6861c1d VZ |
117 | # 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 /nologo /dll /machine:I386 /out:"../lib/wxbase#$ $text = $project{"DLL_VERSION"} . 'u.dll"' |
118 | # ADD LINK32 kernel32.lib user32.lib advapi32.lib shell32.lib wsock32.lib ../lib/zlib.lib ../lib/regex.lib /nologo #$ $text = '/version:' . $project{LINK_VERSION} . ' /dll /machine:I386 /out:"../lib/wxbase' . $project{DLL_VERSION} . 'u.dll"' | |
5e46051f VZ |
119 | |
120 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug Unicode DLL" | |
121 | ||
122 | # PROP BASE Use_MFC 0 | |
123 | # PROP BASE Use_Debug_Libraries 1 | |
124 | # PROP BASE Output_Dir "../lib" | |
125 | # PROP BASE Intermediate_Dir "../BaseDebugUnicodeDll" | |
126 | # PROP BASE Target_Dir "" | |
127 | # PROP Use_MFC 0 | |
128 | # PROP Use_Debug_Libraries 1 | |
129 | # PROP Output_Dir "../lib" | |
130 | # PROP Intermediate_Dir "../BaseDebugUnicodeDll" | |
131 | # PROP Ignore_Export_Lib 0 | |
132 | # PROP Target_Dir "" | |
7de3c469 | 133 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "WXBASEDLL_EXPORTS" /YX /FD /c |
63bd679b | 134 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/basedllud" /I "../include" /I "./regex" /I "./zlib" /D "_DEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /D "WXMAKINGDLL" /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
135 | # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
136 | # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | |
137 | # ADD BASE RSC /l 0x409 /d "_DEBUG" | |
138 | # ADD RSC /l 0x409 /i "../include" /d "_DEBUG" | |
139 | BSC32=bscmake.exe | |
140 | # ADD BASE BSC32 /nologo | |
141 | # ADD BSC32 /nologo | |
142 | LINK32=link.exe | |
a6861c1d VZ |
143 | # 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 /nologo /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxbase#$ $text = $project{"DLL_VERSION"} . 'ud.dll"' |
144 | # ADD LINK32 kernel32.lib user32.lib advapi32.lib shell32.lib wsock32.lib ../lib/zlibd.lib ../lib/regexd.lib /nologo #$ $text = '/version:' . $project{LINK_VERSION} . ' /dll /machine:I386 /out:"../lib/wxbase' . $project{DLL_VERSION} . 'ud.dll"' | |
5e46051f VZ |
145 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release Unicode" |
146 | ||
147 | # PROP BASE Use_MFC 0 | |
148 | # PROP BASE Use_Debug_Libraries 0 | |
149 | # PROP BASE Output_Dir "..\lib" | |
150 | # PROP BASE Intermediate_Dir "..\BaseReleaseUnicode" | |
151 | # PROP BASE Target_Dir "" | |
152 | # PROP Use_MFC 0 | |
153 | # PROP Use_Debug_Libraries 0 | |
154 | # PROP Output_Dir "..\lib" | |
155 | # PROP Intermediate_Dir "..\BaseReleaseUnicode" | |
156 | # PROP Target_Dir "" | |
7de3c469 | 157 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c |
63bd679b | 158 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/baseu" /I "../include" /I "./regex" /I "./zlib" /D "NDEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
159 | # ADD BASE RSC /l 0x409 |
160 | # ADD RSC /l 0x409 | |
161 | BSC32=bscmake.exe | |
162 | # ADD BASE BSC32 /nologo | |
163 | # ADD BSC32 /nologo | |
164 | LIB32=link.exe -lib | |
165 | # ADD BASE LIB32 /nologo | |
166 | # ADD LIB32 /nologo /out:"..\lib\wxbaseu.lib" | |
167 | ||
168 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug Unicode" | |
169 | ||
170 | # PROP BASE Use_MFC 0 | |
171 | # PROP BASE Use_Debug_Libraries 1 | |
172 | # PROP BASE Output_Dir "..\lib" | |
173 | # PROP BASE Intermediate_Dir "..\BaseDebugUnicode" | |
174 | # PROP BASE Target_Dir "" | |
175 | # PROP Use_MFC 0 | |
176 | # PROP Use_Debug_Libraries 1 | |
177 | # PROP Output_Dir "..\lib" | |
178 | # PROP Intermediate_Dir "..\BaseDebugUnicode" | |
179 | # PROP Target_Dir "" | |
7de3c469 | 180 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c |
63bd679b | 181 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/baseud" /I "../include" /I "./regex" /I "./zlib" /D "_DEBUG" /D wxUSE_GUI=0 /D "WIN32" /D "__WXDEBUG__" /D WINVER=0x400 /D "_UNICODE" /D "UNICODE" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
182 | # ADD BASE RSC /l 0x409 |
183 | # ADD RSC /l 0x409 | |
184 | BSC32=bscmake.exe | |
185 | # ADD BASE BSC32 /nologo | |
186 | # ADD BSC32 /nologo /o"../lib/wxbase.bsc" | |
187 | LIB32=link.exe -lib | |
188 | # ADD BASE LIB32 /nologo | |
189 | # ADD LIB32 /nologo /out:"..\lib\wxbaseud.lib" | |
190 | ||
191 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release DLL" | |
192 | ||
193 | # PROP BASE Use_MFC 0 | |
194 | # PROP BASE Use_Debug_Libraries 0 | |
195 | # PROP BASE Output_Dir "../lib" | |
196 | # PROP BASE Intermediate_Dir "../BaseReleaseDll" | |
197 | # PROP BASE Target_Dir "" | |
198 | # PROP Use_MFC 0 | |
199 | # PROP Use_Debug_Libraries 0 | |
200 | # PROP Output_Dir "../lib" | |
201 | # PROP Intermediate_Dir "../BaseReleaseDll" | |
202 | # PROP Ignore_Export_Lib 0 | |
203 | # PROP Target_Dir "" | |
7de3c469 | 204 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "WXBASEDLL_EXPORTS" /YX /FD /c |
63bd679b | 205 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/basedll" /I "../include" /I "./regex" /I "./zlib" /D "NDEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /D "WXMAKINGDLL" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
206 | # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
207 | # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 | |
208 | # ADD BASE RSC /l 0x409 /d "NDEBUG" | |
209 | # ADD RSC /l 0x409 /i "../include" /d "NDEBUG" | |
210 | BSC32=bscmake.exe | |
211 | # ADD BASE BSC32 /nologo | |
212 | # ADD BSC32 /nologo | |
213 | LINK32=link.exe | |
a6861c1d VZ |
214 | # 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 /nologo /dll /machine:I386 /out:"../lib/wxbase#$ $text = $project{"DLL_VERSION"} . '.dll"' |
215 | # ADD LINK32 kernel32.lib user32.lib advapi32.lib shell32.lib wsock32.lib ../lib/zlib.lib ../lib/regex.lib /nologo #$ $text = '/version:' . $project{LINK_VERSION} . ' /dll /machine:I386 /out:"../lib/wxbase' . $project{DLL_VERSION} . '.dll"' | |
5e46051f VZ |
216 | |
217 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug DLL" | |
218 | ||
219 | # PROP BASE Use_MFC 0 | |
220 | # PROP BASE Use_Debug_Libraries 1 | |
221 | # PROP BASE Output_Dir "../lib" | |
222 | # PROP BASE Intermediate_Dir "../BaseDebugDll" | |
223 | # PROP BASE Target_Dir "" | |
224 | # PROP Use_MFC 0 | |
225 | # PROP Use_Debug_Libraries 1 | |
226 | # PROP Output_Dir "../lib" | |
227 | # PROP Intermediate_Dir "../BaseDebugDll" | |
228 | # PROP Ignore_Export_Lib 0 | |
229 | # PROP Target_Dir "" | |
7de3c469 | 230 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "WXBASEDLL_EXPORTS" /YX /FD /c |
63bd679b | 231 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/basedlld" /I "../include" /I "./regex" /I "./zlib" /D "_DEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /D "WXMAKINGDLL" /Yu"wx/wxprec.h" /FD /c |
5e46051f VZ |
232 | # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
233 | # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 | |
234 | # ADD BASE RSC /l 0x409 /d "_DEBUG" | |
235 | # ADD RSC /l 0x409 /i "../include" /d "_DEBUG" | |
236 | BSC32=bscmake.exe | |
237 | # ADD BASE BSC32 /nologo | |
238 | # ADD BSC32 /nologo | |
239 | LINK32=link.exe | |
a6861c1d VZ |
240 | # 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 /nologo /dll /debug /machine:I386 /pdbtype:sept /out:"../lib/wxbase#$ $text = $project{"DLL_VERSION"} . 'd.dll"' |
241 | # ADD LINK32 kernel32.lib user32.lib advapi32.lib shell32.lib wsock32.lib ../lib/zlibd.lib ../lib/regexd.lib /nologo #$ $text = '/version:' . $project{LINK_VERSION} . ' /dll /machine:I386 /out:"../lib/wxbase' . $project{DLL_VERSION} . 'd.dll"' | |
5e46051f VZ |
242 | |
243 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release" | |
b568d04f VZ |
244 | |
245 | # PROP BASE Use_MFC 0 | |
246 | # PROP BASE Use_Debug_Libraries 0 | |
0797afee VZ |
247 | # PROP BASE Output_Dir "..\lib" |
248 | # PROP BASE Intermediate_Dir "..\BaseRelease" | |
b568d04f VZ |
249 | # PROP BASE Target_Dir "" |
250 | # PROP Use_MFC 0 | |
251 | # PROP Use_Debug_Libraries 0 | |
0797afee VZ |
252 | # PROP Output_Dir "..\lib" |
253 | # PROP Intermediate_Dir "..\BaseRelease" | |
b568d04f | 254 | # PROP Target_Dir "" |
7de3c469 VZ |
255 | # ADD BASE CPP /nologo /MD /W4 /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c |
256 | # ADD CPP /nologo /MD /W4 /O2 /I "../lib/base" /I "../include" /I "./regex" /I "./zlib" /D "NDEBUG" /D wxUSE_GUI=0 /D "WIN32" /D WINVER=0x400 /Yu"wx/wxprec.h" /FD /c | |
b568d04f VZ |
257 | # ADD BASE RSC /l 0x409 |
258 | # ADD RSC /l 0x409 | |
259 | BSC32=bscmake.exe | |
260 | # ADD BASE BSC32 /nologo | |
261 | # ADD BSC32 /nologo | |
262 | LIB32=link.exe -lib | |
263 | # ADD BASE LIB32 /nologo | |
0797afee | 264 | # ADD LIB32 /nologo /out:"..\lib\wxbase.lib" |
b568d04f VZ |
265 | |
266 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug" | |
267 | ||
268 | # PROP BASE Use_MFC 0 | |
269 | # PROP BASE Use_Debug_Libraries 1 | |
0797afee VZ |
270 | # PROP BASE Output_Dir "..\lib" |
271 | # PROP BASE Intermediate_Dir "..\BaseDebug" | |
b568d04f VZ |
272 | # PROP BASE Target_Dir "" |
273 | # PROP Use_MFC 0 | |
274 | # PROP Use_Debug_Libraries 1 | |
0797afee VZ |
275 | # PROP Output_Dir "..\lib" |
276 | # PROP Intermediate_Dir "..\BaseDebug" | |
b568d04f | 277 | # PROP Target_Dir "" |
7de3c469 VZ |
278 | # ADD BASE CPP /nologo /MDd /W4 /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c |
279 | # ADD CPP /nologo /MDd /W4 /Zi /Od /I "../lib/based" /I "../include" /I "./regex" /I "./zlib" /D "_DEBUG" /D wxUSE_GUI=0 /D "WIN32" /D "__WXDEBUG__" /D WINVER=0x400 /Yu"wx/wxprec.h" /FD /c | |
b568d04f VZ |
280 | # ADD BASE RSC /l 0x409 |
281 | # ADD RSC /l 0x409 | |
282 | BSC32=bscmake.exe | |
283 | # ADD BASE BSC32 /nologo | |
0797afee | 284 | # ADD BSC32 /nologo /o"../lib/wxbase.bsc" |
b568d04f VZ |
285 | LIB32=link.exe -lib |
286 | # ADD BASE LIB32 /nologo | |
0797afee | 287 | # ADD LIB32 /nologo /out:"..\lib\wxbased.lib" |
b568d04f VZ |
288 | |
289 | !ENDIF | |
290 | ||
291 | # Begin Target | |
292 | ||
5e46051f VZ |
293 | # Name "wxBase - Win32 Release Unicode DLL" |
294 | # Name "wxBase - Win32 Debug Unicode DLL" | |
295 | # Name "wxBase - Win32 Release Unicode" | |
296 | # Name "wxBase - Win32 Debug Unicode" | |
297 | # Name "wxBase - Win32 Release DLL" | |
298 | # Name "wxBase - Win32 Debug DLL" | |
b568d04f VZ |
299 | # Name "wxBase - Win32 Release" |
300 | # Name "wxBase - Win32 Debug" | |
301 | ||
0797afee VZ |
302 | # Begin Group "Common Files" |
303 | ||
304 | # PROP Default_Filter "" | |
305 | #$ ExpandGlue("WXCOMMONSRCS", "# Begin Source File\n\nSOURCE=.\\common\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\common\\", "\n# End Source File\n"); | |
306 | #$ 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"); | |
307 | # End Group | |
308 | # Begin Group "MSW Files" | |
309 | ||
b568d04f VZ |
310 | # PROP Default_Filter "" |
311 | # Begin Source File | |
312 | ||
0797afee | 313 | SOURCE=.\msw\dummy.cpp |
b568d04f VZ |
314 | # ADD CPP /Yc"wx/wxprec.h" |
315 | # End Source File | |
0797afee VZ |
316 | #$ ExpandGlue("WXMSWSRCS", "# Begin Source File\n\nSOURCE=.\\msw\\", "\n# End Source File\n# Begin Source File\n\nSOURCE=.\\msw\\", "\n# End Source File\n"); |
317 | #$ 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"); | |
318 | # End Group | |
319 | # Begin Group "Headers" | |
320 | ||
321 | # PROP Default_Filter "" | |
322 | # Begin Group "Setup" | |
323 | ||
324 | # PROP Default_Filter "" | |
325 | # Begin Source File | |
326 | ||
4fcf087d | 327 | SOURCE=..\include\wx\msw\setup.h |
5e46051f | 328 | !IF "$(CFG)" == "wxBase - Win32 Release Unicode DLL" |
7de3c469 | 329 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 330 | InputPath=..\include\wx\msw\setup.h |
0797afee | 331 | |
5e46051f | 332 | "../lib/basedllu/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" |
cebab22d | 333 | copy "$(InputPath)" ..\lib\basedllu\wx\setup.h |
0797afee | 334 | |
5e46051f VZ |
335 | # End Custom Build |
336 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug Unicode DLL" | |
7de3c469 | 337 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 338 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
339 | |
340 | "../lib/basedllud/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 341 | copy "$(InputPath)" ..\lib\basedllud\wx\setup.h |
5e46051f VZ |
342 | # End Custom Build |
343 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release Unicode" | |
7de3c469 | 344 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 345 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
346 | |
347 | "../lib/baseu/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 348 | copy "$(InputPath)" ..\lib\baseu\wx\setup.h |
5e46051f VZ |
349 | |
350 | # End Custom Build | |
351 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug Unicode" | |
7de3c469 | 352 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 353 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
354 | |
355 | "../lib/baseud/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 356 | copy "$(InputPath)" ..\lib\baseud\wx\setup.h |
5e46051f VZ |
357 | |
358 | # End Custom Build | |
359 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release DLL" | |
7de3c469 | 360 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 361 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
362 | |
363 | "../lib/basedll/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 364 | copy "$(InputPath)" ..\lib\basedll\wx\setup.h |
5e46051f VZ |
365 | |
366 | # End Custom Build | |
367 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug DLL" | |
7de3c469 | 368 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 369 | InputPath=..\include\wx\msw\setup.h |
5e46051f VZ |
370 | |
371 | "../lib/basedlld/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 372 | copy "$(InputPath)" ..\lib\basedlld\wx\setup.h |
5e46051f VZ |
373 | # End Custom Build |
374 | !ELSEIF "$(CFG)" == "wxBase - Win32 Release" | |
7de3c469 | 375 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 376 | InputPath=..\include\wx\msw\setup.h |
0797afee VZ |
377 | |
378 | "../lib/base/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 379 | copy "$(InputPath)" ..\lib\base\wx\setup.h |
0797afee VZ |
380 | |
381 | # End Custom Build | |
0797afee | 382 | !ELSEIF "$(CFG)" == "wxBase - Win32 Debug" |
7de3c469 | 383 | # Begin Custom Build - Copying $(InputPath) to $(TargetDir) |
4fcf087d | 384 | InputPath=..\include\wx\msw\setup.h |
0797afee VZ |
385 | |
386 | "../lib/based/wx/setup.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | |
cebab22d | 387 | copy "$(InputPath)" ..\lib\based\wx\setup.h |
0797afee VZ |
388 | |
389 | # End Custom Build | |
0797afee VZ |
390 | !ENDIF |
391 | ||
392 | # End Source File | |
393 | # End Group | |
394 | # Begin Group "Common" | |
b568d04f | 395 | |
0797afee VZ |
396 | # PROP Default_Filter "" |
397 | #$ 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"); | |
398 | # End Group | |
399 | # Begin Group "MSW" | |
400 | ||
401 | # PROP Default_Filter "" | |
402 | #$ 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"); | |
403 | # End Group | |
404 | # End Group | |
b568d04f VZ |
405 | # End Target |
406 | # End Project | |
5e46051f | 407 | #! vi: set sta ts=8 sw=4 noet nolist tw=0 ft=perl: |