]>
Commit | Line | Data |
---|---|---|
ddf98968 | 1 | <?xml version="1.0" ?> |
cb8bbc13 VS |
2 | <!-- $Id$ --> |
3 | ||
ddf98968 | 4 | <makefile> |
61639efb | 5 | |
e80118cf VS |
6 | <define-rule name="wxshortcut" extends="phony"> |
7 | <template> | |
8 | <set var="name">$(id.replace('wx',''))</set> | |
9 | <set var="namedll"> | |
10 | <if cond="SHARED=='1'">$(name)dll</if> | |
11 | </set> | |
12 | <set var="namelib"> | |
13 | <if cond="SHARED=='0'">$(name)lib</if> | |
14 | </set> | |
15 | <depends>$(namedll)</depends> | |
16 | <depends>$(namelib)</depends> | |
17 | </template> | |
18 | </define-rule> | |
19 | ||
ddf98968 | 20 | <!-- ================================================================= --> |
e86e1522 | 21 | <!-- wxBase library --> |
ddf98968 | 22 | <!-- ================================================================= --> |
61639efb | 23 | |
3560dc76 | 24 | <dll id="basedll" template="wx_base_dll" |
ddf98968 | 25 | cond="SHARED=='1' and MONOLITHIC=='0'"> |
81659205 | 26 | <define>WXMAKINGDLL_BASE</define> |
e86e1522 | 27 | <define>wxUSE_BASE=1</define> |
e86e1522 | 28 | <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources> |
390c0cfb | 29 | <msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers> |
ddf98968 | 30 | </dll> |
61639efb | 31 | |
3560dc76 | 32 | <lib id="baselib" template="wx_base_lib" |
ddf98968 | 33 | cond="SHARED=='0' and MONOLITHIC=='0'"> |
61639efb | 34 | <define>wxUSE_BASE=1</define> |
e86e1522 | 35 | <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources> |
390c0cfb | 36 | <msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers> |
e86e1522 | 37 | </lib> |
7bd54b68 | 38 | |
e80118cf VS |
39 | <wxshortcut id="wxbase" cond="MONOLITHIC=='0'"/> |
40 | ||
af594eca | 41 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">base=baselib+basedll</set> |
61639efb VZ |
42 | |
43 | ||
7c4728f6 VS |
44 | <!-- ================================================================= --> |
45 | <!-- wxNet library --> | |
46 | <!-- ================================================================= --> | |
61639efb | 47 | |
7c4728f6 VS |
48 | <dll id="netdll" template="wx_base_dll" |
49 | cond="SHARED=='1' and MONOLITHIC=='0'"> | |
50 | <define>WXUSINGDLL</define> | |
51 | <define>WXMAKINGDLL_NET</define> | |
52 | <sources>$(NET_SRC)</sources> | |
53 | <msvc-headers>$(NET_CMN_HDR) $(NET_PLATFORM_HDR)</msvc-headers> | |
54 | <library>basedll</library> | |
55 | </dll> | |
61639efb | 56 | |
7c4728f6 VS |
57 | <lib id="netlib" template="wx_base_lib" |
58 | cond="SHARED=='0' and MONOLITHIC=='0'"> | |
7c4728f6 | 59 | <sources>$(NET_SRC)</sources> |
e2281645 | 60 | <msvc-headers>$(NET_CMN_HDR) $(NET_PLATFORM_HDR)</msvc-headers> |
7c4728f6 | 61 | </lib> |
61639efb | 62 | |
e80118cf VS |
63 | <wxshortcut id="wxnet" cond="MONOLITHIC=='0'"/> |
64 | ||
af594eca | 65 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">net=netlib+netdll</set> |
e86e1522 | 66 | |
61639efb | 67 | |
e86e1522 VS |
68 | <!-- ================================================================= --> |
69 | <!-- Main GUI library --> | |
70 | <!-- ================================================================= --> | |
61639efb | 71 | |
e86e1522 VS |
72 | <dll id="coredll" template="wx_dll" |
73 | cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
a7140600 | 74 | <define>WXUSINGDLL</define> |
81659205 | 75 | <define>WXMAKINGDLL_CORE</define> |
61639efb | 76 | <define>wxUSE_BASE=0</define> |
e86e1522 | 77 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
390c0cfb | 78 | <msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers> |
6c6df83a | 79 | <library>basedll</library> |
e86e1522 | 80 | </dll> |
61639efb | 81 | |
e86e1522 VS |
82 | <lib id="corelib" template="wx_lib" |
83 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
61639efb | 84 | <define>wxUSE_BASE=0</define> |
e86e1522 | 85 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
390c0cfb | 86 | <msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers> |
ddf98968 | 87 | </lib> |
61639efb | 88 | |
e80118cf VS |
89 | <wxshortcut id="wxcore" cond="MONOLITHIC=='0' and USE_GUI=='1'"/> |
90 | ||
af594eca | 91 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">core=corelib+coredll</set> |
61639efb VZ |
92 | |
93 | ||
13cb46e0 VS |
94 | <!-- ================================================================= --> |
95 | <!-- "Advanced" controls library --> | |
96 | <!-- ================================================================= --> | |
61639efb | 97 | |
13cb46e0 VS |
98 | <dll id="advdll" template="wx_dll" |
99 | cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
100 | <define>WXUSINGDLL</define> | |
101 | <define>WXMAKINGDLL_ADV</define> | |
c79241a2 | 102 | <sources>$(ADVANCED_SRC) $(PLUGIN_ADV_SRC)</sources> |
13cb46e0 VS |
103 | <msvc-headers>$(ADVANCED_HDR)</msvc-headers> |
104 | <library>coredll</library> | |
105 | <library>basedll</library> | |
c79241a2 | 106 | <ldlibs>$(PLUGIN_ADV_EXTRALIBS)</ldlibs> |
13cb46e0 | 107 | </dll> |
61639efb | 108 | |
13cb46e0 VS |
109 | <lib id="advlib" template="wx_lib" |
110 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
c79241a2 | 111 | <sources>$(ADVANCED_SRC) $(PLUGIN_ADV_SRC)</sources> |
13cb46e0 VS |
112 | <msvc-headers>$(ADVANCED_HDR)</msvc-headers> |
113 | </lib> | |
61639efb | 114 | |
e80118cf VS |
115 | <wxshortcut id="wxadv" cond="MONOLITHIC=='0' and USE_GUI=='1'"/> |
116 | ||
af594eca | 117 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">adv=advlib+advdll</set> |
61639efb VZ |
118 | |
119 | ||
2ae3b602 RN |
120 | <!-- ================================================================= --> |
121 | <!-- wxMedia classes library --> | |
122 | <!-- ================================================================= --> | |
61639efb | 123 | |
2ae3b602 | 124 | <dll id="mediadll" template="wx_dll" |
557002cf | 125 | cond="SHARED=='1' and USE_MEDIA=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> |
2ae3b602 RN |
126 | <define>WXUSINGDLL</define> |
127 | <define>WXMAKINGDLL_MEDIA</define> | |
128 | <sources>$(MEDIA_SRC)</sources> | |
129 | <msvc-headers>$(MEDIA_HDR)</msvc-headers> | |
130 | <library>coredll</library> | |
131 | <library>basedll</library> | |
2ae3b602 | 132 | </dll> |
61639efb | 133 | |
2ae3b602 | 134 | <lib id="medialib" template="wx_lib" |
557002cf | 135 | cond="SHARED=='0' and USE_MEDIA=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> |
2ae3b602 RN |
136 | <sources>$(MEDIA_SRC)</sources> |
137 | <msvc-headers>$(MEDIA_HDR)</msvc-headers> | |
138 | </lib> | |
61639efb | 139 | |
e80118cf VS |
140 | <wxshortcut id="wxmedia" cond="MONOLITHIC=='0' and USE_GUI=='1' and USE_MEDIA=='1'"/> |
141 | ||
2ae3b602 RN |
142 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">media=medialib+mediadll</set> |
143 | ||
144 | ||
ddf98968 VS |
145 | <!-- ================================================================ --> |
146 | <!-- wxHTML --> | |
147 | <!-- ================================================================ --> | |
61639efb | 148 | |
ddf98968 | 149 | <dll id="htmldll" template="wx_dll" |
0bcf9597 | 150 | cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'"> |
a7140600 | 151 | <define>WXUSINGDLL</define> |
81659205 | 152 | <define>WXMAKINGDLL_HTML</define> |
ddf98968 | 153 | <sources>$(HTML_SRC)</sources> |
6c6df83a VS |
154 | <library>coredll</library> |
155 | <library>basedll</library> | |
c839485c | 156 | <ldlibs>$(EXTRALIBS_HTML)</ldlibs> |
390c0cfb | 157 | <msvc-headers>$(HTML_HDR)</msvc-headers> |
ddf98968 | 158 | </dll> |
61639efb | 159 | |
47b6ebde VS |
160 | <!-- use this to conditonally link against htmldll with <library>: --> |
161 | <set var="htmldll_library_link"> | |
162 | <if cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">htmldll</if> | |
163 | </set> | |
164 | ||
ddf98968 | 165 | <lib id="htmllib" template="wx_lib" |
0bcf9597 | 166 | cond="SHARED=='0' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'"> |
ddf98968 | 167 | <sources>$(HTML_SRC)</sources> |
390c0cfb | 168 | <msvc-headers>$(HTML_HDR)</msvc-headers> |
ddf98968 | 169 | </lib> |
61639efb | 170 | |
e80118cf VS |
171 | <wxshortcut id="wxhtml" cond="MONOLITHIC=='0' and USE_HTML=='1'"/> |
172 | ||
af594eca | 173 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">html=htmllib+htmldll</set> |
61639efb | 174 | |
4d264332 VS |
175 | <!-- ================================================================ --> |
176 | <!-- OpenGL --> | |
177 | <!-- ================================================================ --> | |
178 | ||
179 | <!-- included by wx.bkl from opengl.bkl --> | |
61639efb | 180 | |
af594eca | 181 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">gl=gllib+gldll</set> |
61639efb VZ |
182 | |
183 | ||
184 | <!-- ================================================================ --> | |
185 | <!-- QA --> | |
186 | <!-- ================================================================ --> | |
187 | ||
188 | <dll id="qadll" template="wx_dll" | |
189 | cond="SHARED=='1' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'"> | |
190 | <define>WXUSINGDLL</define> | |
191 | <define>WXMAKINGDLL_QA</define> | |
192 | <sources>$(QA_SRC)</sources> | |
193 | <msvc-headers>$(QA_HDR)</msvc-headers> | |
4ebd02e9 | 194 | <library>coredll</library> |
61639efb VZ |
195 | <library>basedll</library> |
196 | <library>xmldll</library> | |
197 | </dll> | |
198 | ||
199 | <lib id="qalib" template="wx_lib" | |
200 | cond="SHARED=='0' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'"> | |
201 | <sources>$(QA_SRC)</sources> | |
202 | <msvc-headers>$(QA_HDR)</msvc-headers> | |
203 | </lib> | |
204 | ||
e80118cf VS |
205 | <wxshortcut id="wxqa" cond="MONOLITHIC=='0' and USE_QA=='1'"/> |
206 | ||
61639efb VZ |
207 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">qa=qalib+qadll</set> |
208 | ||
a69544bf VS |
209 | <!-- ================================================================ --> |
210 | <!-- XML --> | |
211 | <!-- ================================================================ --> | |
61639efb | 212 | |
a69544bf VS |
213 | <dll id="xmldll" template="wx_base_dll" |
214 | cond="SHARED=='1' and MONOLITHIC=='0'"> | |
215 | <define>WXUSINGDLL</define> | |
216 | <define>WXMAKINGDLL_XML</define> | |
217 | <sources>$(XML_SRC)</sources> | |
390c0cfb | 218 | <msvc-headers>$(XML_HDR)</msvc-headers> |
a69544bf VS |
219 | <library>basedll</library> |
220 | <ldlibs>$(EXTRALIBS_XML)</ldlibs> | |
221 | </dll> | |
61639efb | 222 | |
a69544bf VS |
223 | <lib id="xmllib" template="wx_base_lib" |
224 | cond="SHARED=='0' and MONOLITHIC=='0'"> | |
225 | <sources>$(XML_SRC)</sources> | |
390c0cfb | 226 | <msvc-headers>$(XML_HDR)</msvc-headers> |
a69544bf | 227 | </lib> |
61639efb | 228 | |
e80118cf VS |
229 | <wxshortcut id="wxxml" cond="MONOLITHIC=='0'"/> |
230 | ||
af594eca | 231 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xml=xmllib+xmldll</set> |
61639efb | 232 | |
3849327b VS |
233 | <!-- ================================================================ --> |
234 | <!-- XRC --> | |
235 | <!-- ================================================================ --> | |
61639efb | 236 | |
3849327b VS |
237 | <dll id="xrcdll" template="wx_dll" |
238 | cond="SHARED=='1' and USE_XRC=='1' and MONOLITHIC=='0'"> | |
239 | <define>WXUSINGDLL</define> | |
240 | <define>WXMAKINGDLL_XRC</define> | |
241 | <sources>$(XRC_SRC)</sources> | |
47b6ebde | 242 | <library>$(htmldll_library_link)</library> |
3849327b VS |
243 | <library>advdll</library> |
244 | <library>coredll</library> | |
245 | <library>xmldll</library> | |
246 | <library>basedll</library> | |
247 | <msvc-headers>$(XRC_HDR)</msvc-headers> | |
248 | </dll> | |
61639efb | 249 | |
3849327b VS |
250 | <lib id="xrclib" template="wx_lib" |
251 | cond="SHARED=='0' and USE_XRC=='1' and MONOLITHIC=='0'"> | |
252 | <sources>$(XRC_SRC)</sources> | |
253 | <msvc-headers>$(XRC_HDR)</msvc-headers> | |
254 | </lib> | |
61639efb | 255 | |
e80118cf VS |
256 | <wxshortcut id="wxxrc" cond="MONOLITHIC=='0' and USE_XRC=='1'"/> |
257 | ||
3849327b | 258 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xrc=xrclib+xrcdll</set> |
61639efb | 259 | |
50acee04 JS |
260 | <!-- ================================================================ --> |
261 | <!-- AUI --> | |
262 | <!-- ================================================================ --> | |
263 | ||
264 | <dll id="auidll" template="wx_dll" | |
265 | cond="SHARED=='1' and USE_AUI=='1' and MONOLITHIC=='0'"> | |
266 | <define>WXUSINGDLL</define> | |
267 | <define>WXMAKINGDLL_AUI</define> | |
268 | <sources>$(AUI_SRC)</sources> | |
269 | <library>advdll</library> | |
270 | <library>coredll</library> | |
271 | <library>basedll</library> | |
272 | <msvc-headers>$(AUI_HDR)</msvc-headers> | |
273 | </dll> | |
274 | ||
275 | <lib id="auilib" template="wx_lib" | |
276 | cond="SHARED=='0' and USE_AUI=='1' and MONOLITHIC=='0'"> | |
277 | <sources>$(AUI_SRC)</sources> | |
278 | <msvc-headers>$(AUI_HDR)</msvc-headers> | |
279 | </lib> | |
e80118cf VS |
280 | |
281 | <wxshortcut id="wxaui" cond="MONOLITHIC=='0' and USE_AUI=='1'"/> | |
50acee04 JS |
282 | |
283 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">aui=auilib+auidll</set> | |
284 | ||
3b2cb431 JS |
285 | <!-- ================================================================ --> |
286 | <!-- RICHTEXT --> | |
287 | <!-- ================================================================ --> | |
288 | ||
289 | <dll id="richtextdll" template="wx_dll" | |
290 | cond="SHARED=='1' and USE_RICHTEXT=='1' and MONOLITHIC=='0'"> | |
291 | <define>WXUSINGDLL</define> | |
c69f9884 | 292 | <define>WXMAKINGDLL_RICHTEXT</define> |
3b2cb431 JS |
293 | <sources>$(RICHTEXT_SRC)</sources> |
294 | <library>advdll</library> | |
47b6ebde | 295 | <library>$(htmldll_library_link)</library> |
a3f6a2cd | 296 | <library>xmldll</library> |
3b2cb431 JS |
297 | <library>coredll</library> |
298 | <library>basedll</library> | |
299 | <msvc-headers>$(RICHTEXT_HDR)</msvc-headers> | |
300 | </dll> | |
301 | ||
302 | <lib id="richtextlib" template="wx_lib" | |
303 | cond="SHARED=='0' and USE_RICHTEXT=='1' and MONOLITHIC=='0'"> | |
304 | <sources>$(RICHTEXT_SRC)</sources> | |
305 | <msvc-headers>$(RICHTEXT_HDR)</msvc-headers> | |
306 | </lib> | |
e80118cf VS |
307 | |
308 | <wxshortcut id="wxrichtext" cond="MONOLITHIC=='0' and USE_RICHTEXT=='1'"/> | |
3b2cb431 JS |
309 | |
310 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">richtext=richtextlib+richtextdll</set> | |
311 | ||
54429bb3 RD |
312 | <!-- ================================================================ --> |
313 | <!-- STC --> | |
314 | <!-- ================================================================ --> | |
315 | ||
316 | <template id="stc_base"> | |
317 | <include>$(TOP_SRCDIR)src/stc/scintilla/include</include> | |
318 | <include>$(TOP_SRCDIR)src/stc/scintilla/src</include> | |
319 | <define>__WX__</define> | |
320 | <define>SCI_LEXER</define> | |
321 | <define>LINK_LEXERS</define> | |
322 | <cppflags-borland>-w-8027</cppflags-borland> | |
323 | <library>wxscintilla</library> | |
324 | </template> | |
325 | ||
326 | <dll id="stcdll" template="wx_dll,stc_base" | |
327 | cond="SHARED=='1' and USE_STC=='1' and MONOLITHIC=='0'"> | |
328 | <define>WXUSINGDLL</define> | |
329 | <define>WXMAKINGDLL_STC</define> | |
330 | <sources>$(STC_SRC)</sources> | |
331 | <library>coredll</library> | |
332 | <library>basedll</library> | |
333 | <msvc-headers>$(STC_HDR)</msvc-headers> | |
334 | </dll> | |
335 | ||
336 | <lib id="stclib" template="wx_lib,stc_base" | |
337 | cond="SHARED=='0' and USE_STC=='1' and MONOLITHIC=='0'"> | |
338 | <sources>$(STC_SRC)</sources> | |
339 | <msvc-headers>$(STC_HDR)</msvc-headers> | |
340 | </lib> | |
341 | ||
342 | <wxshortcut id="wxstc" cond="MONOLITHIC=='0' and USE_STC=='1'"/> | |
343 | ||
344 | <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">stc=stclib+stcdll</set> | |
345 | ||
ddf98968 | 346 | </makefile> |