]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/multilib.bkl
Fix assert about passing long as "%d" in wxXRC code.
[wxWidgets.git] / build / bakefiles / multilib.bkl
CommitLineData
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>
2f8711ed 132 <ldlibs>$(EXTRALIBS_MEDIA)</ldlibs>
2ae3b602 133 </dll>
61639efb 134
2ae3b602 135 <lib id="medialib" template="wx_lib"
557002cf 136 cond="SHARED=='0' and USE_MEDIA=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
2ae3b602
RN
137 <sources>$(MEDIA_SRC)</sources>
138 <msvc-headers>$(MEDIA_HDR)</msvc-headers>
139 </lib>
61639efb 140
e80118cf
VS
141 <wxshortcut id="wxmedia" cond="MONOLITHIC=='0' and USE_GUI=='1' and USE_MEDIA=='1'"/>
142
2ae3b602
RN
143 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">media=medialib+mediadll</set>
144
145
ddf98968
VS
146 <!-- ================================================================ -->
147 <!-- wxHTML -->
148 <!-- ================================================================ -->
61639efb 149
ddf98968 150 <dll id="htmldll" template="wx_dll"
0bcf9597 151 cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">
a7140600 152 <define>WXUSINGDLL</define>
81659205 153 <define>WXMAKINGDLL_HTML</define>
ddf98968 154 <sources>$(HTML_SRC)</sources>
6c6df83a
VS
155 <library>coredll</library>
156 <library>basedll</library>
c839485c 157 <ldlibs>$(EXTRALIBS_HTML)</ldlibs>
390c0cfb 158 <msvc-headers>$(HTML_HDR)</msvc-headers>
ddf98968 159 </dll>
61639efb 160
47b6ebde
VS
161 <!-- use this to conditonally link against htmldll with <library>: -->
162 <set var="htmldll_library_link">
163 <if cond="SHARED=='1' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">htmldll</if>
164 </set>
165
ddf98968 166 <lib id="htmllib" template="wx_lib"
0bcf9597 167 cond="SHARED=='0' and USE_GUI=='1' and USE_HTML=='1' and MONOLITHIC=='0'">
ddf98968 168 <sources>$(HTML_SRC)</sources>
390c0cfb 169 <msvc-headers>$(HTML_HDR)</msvc-headers>
ddf98968 170 </lib>
61639efb 171
e80118cf
VS
172 <wxshortcut id="wxhtml" cond="MONOLITHIC=='0' and USE_HTML=='1'"/>
173
af594eca 174 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">html=htmllib+htmldll</set>
61639efb 175
cfcf1d6e 176 <!-- ================================================================ -->
467d261e 177 <!-- wxWEBVIEW -->
cfcf1d6e
SL
178 <!-- ================================================================ -->
179
467d261e
SL
180 <dll id="webviewdll" template="wx_dll"
181 cond="SHARED=='1' and USE_GUI=='1' and USE_WEBVIEW=='1' and MONOLITHIC=='0'">
cfcf1d6e 182 <define>WXUSINGDLL</define>
467d261e
SL
183 <define>WXMAKINGDLL_WEBVIEW</define>
184 <sources>$(WEBVIEW_SRC)</sources>
cfcf1d6e
SL
185 <library>coredll</library>
186 <library>basedll</library>
467d261e 187 <msvc-headers>$(WEBVIEW_HDR)</msvc-headers>
cfcf1d6e
SL
188 </dll>
189
467d261e
SL
190 <lib id="webviewlib" template="wx_lib"
191 cond="SHARED=='0' and USE_GUI=='1' and USE_WEBVIEW=='1' and MONOLITHIC=='0'">
192 <sources>$(WEBVIEW_SRC)</sources>
193 <msvc-headers>$(WEBVIEW_HDR)</msvc-headers>
cfcf1d6e
SL
194 </lib>
195
467d261e 196 <wxshortcut id="wxwebview" cond="MONOLITHIC=='0' and USE_WEBVIEW=='1'"/>
cfcf1d6e 197
467d261e 198 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">webview=webviewlib+webviewdll</set>
cfcf1d6e 199
4d264332
VS
200 <!-- ================================================================ -->
201 <!-- OpenGL -->
202 <!-- ================================================================ -->
203
204 <!-- included by wx.bkl from opengl.bkl -->
61639efb 205
af594eca 206 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">gl=gllib+gldll</set>
61639efb
VZ
207
208
209 <!-- ================================================================ -->
210 <!-- QA -->
211 <!-- ================================================================ -->
212
213 <dll id="qadll" template="wx_dll"
214 cond="SHARED=='1' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'">
215 <define>WXUSINGDLL</define>
216 <define>WXMAKINGDLL_QA</define>
217 <sources>$(QA_SRC)</sources>
218 <msvc-headers>$(QA_HDR)</msvc-headers>
4ebd02e9 219 <library>coredll</library>
61639efb
VZ
220 <library>basedll</library>
221 <library>xmldll</library>
222 </dll>
223
224 <lib id="qalib" template="wx_lib"
225 cond="SHARED=='0' and USE_GUI=='1' and USE_QA=='1' and MONOLITHIC=='0'">
226 <sources>$(QA_SRC)</sources>
227 <msvc-headers>$(QA_HDR)</msvc-headers>
228 </lib>
229
e80118cf
VS
230 <wxshortcut id="wxqa" cond="MONOLITHIC=='0' and USE_QA=='1'"/>
231
61639efb
VZ
232 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">qa=qalib+qadll</set>
233
a69544bf
VS
234 <!-- ================================================================ -->
235 <!-- XML -->
236 <!-- ================================================================ -->
61639efb 237
a69544bf
VS
238 <dll id="xmldll" template="wx_base_dll"
239 cond="SHARED=='1' and MONOLITHIC=='0'">
240 <define>WXUSINGDLL</define>
241 <define>WXMAKINGDLL_XML</define>
242 <sources>$(XML_SRC)</sources>
390c0cfb 243 <msvc-headers>$(XML_HDR)</msvc-headers>
a69544bf
VS
244 <library>basedll</library>
245 <ldlibs>$(EXTRALIBS_XML)</ldlibs>
246 </dll>
61639efb 247
a69544bf
VS
248 <lib id="xmllib" template="wx_base_lib"
249 cond="SHARED=='0' and MONOLITHIC=='0'">
250 <sources>$(XML_SRC)</sources>
390c0cfb 251 <msvc-headers>$(XML_HDR)</msvc-headers>
a69544bf 252 </lib>
61639efb 253
e80118cf
VS
254 <wxshortcut id="wxxml" cond="MONOLITHIC=='0'"/>
255
af594eca 256 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xml=xmllib+xmldll</set>
61639efb 257
3849327b
VS
258 <!-- ================================================================ -->
259 <!-- XRC -->
260 <!-- ================================================================ -->
61639efb 261
3849327b
VS
262 <dll id="xrcdll" template="wx_dll"
263 cond="SHARED=='1' and USE_XRC=='1' and MONOLITHIC=='0'">
264 <define>WXUSINGDLL</define>
265 <define>WXMAKINGDLL_XRC</define>
266 <sources>$(XRC_SRC)</sources>
47b6ebde 267 <library>$(htmldll_library_link)</library>
3849327b
VS
268 <library>advdll</library>
269 <library>coredll</library>
270 <library>xmldll</library>
271 <library>basedll</library>
272 <msvc-headers>$(XRC_HDR)</msvc-headers>
273 </dll>
61639efb 274
3849327b
VS
275 <lib id="xrclib" template="wx_lib"
276 cond="SHARED=='0' and USE_XRC=='1' and MONOLITHIC=='0'">
277 <sources>$(XRC_SRC)</sources>
278 <msvc-headers>$(XRC_HDR)</msvc-headers>
279 </lib>
61639efb 280
e80118cf
VS
281 <wxshortcut id="wxxrc" cond="MONOLITHIC=='0' and USE_XRC=='1'"/>
282
3849327b 283 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">xrc=xrclib+xrcdll</set>
61639efb 284
50acee04
JS
285 <!-- ================================================================ -->
286 <!-- AUI -->
287 <!-- ================================================================ -->
288
289 <dll id="auidll" template="wx_dll"
290 cond="SHARED=='1' and USE_AUI=='1' and MONOLITHIC=='0'">
291 <define>WXUSINGDLL</define>
292 <define>WXMAKINGDLL_AUI</define>
293 <sources>$(AUI_SRC)</sources>
294 <library>advdll</library>
295 <library>coredll</library>
296 <library>basedll</library>
297 <msvc-headers>$(AUI_HDR)</msvc-headers>
298 </dll>
299
300 <lib id="auilib" template="wx_lib"
301 cond="SHARED=='0' and USE_AUI=='1' and MONOLITHIC=='0'">
302 <sources>$(AUI_SRC)</sources>
303 <msvc-headers>$(AUI_HDR)</msvc-headers>
304 </lib>
e80118cf
VS
305
306 <wxshortcut id="wxaui" cond="MONOLITHIC=='0' and USE_AUI=='1'"/>
50acee04
JS
307
308 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">aui=auilib+auidll</set>
3c3ead1d
PC
309
310 <!-- ================================================================ -->
311 <!-- RIBBON -->
312 <!-- ================================================================ -->
313
314 <dll id="ribbondll" template="wx_dll"
315 cond="SHARED=='1' and USE_RIBBON=='1' and MONOLITHIC=='0'">
316 <define>WXUSINGDLL</define>
317 <define>WXMAKINGDLL_RIBBON</define>
318 <sources>$(RIBBON_SRC)</sources>
319 <library>advdll</library>
320 <library>coredll</library>
321 <library>basedll</library>
322 <msvc-headers>$(RIBBON_HDR)</msvc-headers>
323 </dll>
324
325 <lib id="ribbonlib" template="wx_lib"
326 cond="SHARED=='0' and USE_RIBBON=='1' and MONOLITHIC=='0'">
327 <sources>$(RIBBON_SRC)</sources>
328 <msvc-headers>$(RIBBON_HDR)</msvc-headers>
329 </lib>
330
331 <wxshortcut id="wxribbon" cond="MONOLITHIC=='0' and USE_RIBBON=='1'"/>
332
333 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">ribbon=ribbonlib+ribbondll</set>
50acee04 334
1c4293cb
VZ
335 <!-- ================================================================ -->
336 <!-- PROPGRID -->
337 <!-- ================================================================ -->
338
339 <dll id="propgriddll" template="wx_dll"
340 cond="SHARED=='1' and USE_PROPGRID=='1' and MONOLITHIC=='0'">
341 <define>WXUSINGDLL</define>
342 <define>WXMAKINGDLL_PROPGRID</define>
343 <sources>$(PROPGRID_SRC)</sources>
344 <library>advdll</library>
345 <library>coredll</library>
346 <library>basedll</library>
347 <msvc-headers>$(PROPGRID_HDR)</msvc-headers>
348 </dll>
349
350 <lib id="propgridlib" template="wx_lib"
351 cond="SHARED=='0' and USE_PROPGRID=='1' and MONOLITHIC=='0'">
352 <sources>$(PROPGRID_SRC)</sources>
353 <msvc-headers>$(PROPGRID_HDR)</msvc-headers>
354 </lib>
355
356 <wxshortcut id="wxpropgrid" cond="MONOLITHIC=='0' and USE_PROPGRID=='1'"/>
357
358 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">propgrid=propgridlib+propgriddll</set>
359
3b2cb431
JS
360 <!-- ================================================================ -->
361 <!-- RICHTEXT -->
362 <!-- ================================================================ -->
363
364 <dll id="richtextdll" template="wx_dll"
365 cond="SHARED=='1' and USE_RICHTEXT=='1' and MONOLITHIC=='0'">
366 <define>WXUSINGDLL</define>
c69f9884 367 <define>WXMAKINGDLL_RICHTEXT</define>
3b2cb431
JS
368 <sources>$(RICHTEXT_SRC)</sources>
369 <library>advdll</library>
47b6ebde 370 <library>$(htmldll_library_link)</library>
a3f6a2cd 371 <library>xmldll</library>
3b2cb431
JS
372 <library>coredll</library>
373 <library>basedll</library>
374 <msvc-headers>$(RICHTEXT_HDR)</msvc-headers>
375 </dll>
376
377 <lib id="richtextlib" template="wx_lib"
378 cond="SHARED=='0' and USE_RICHTEXT=='1' and MONOLITHIC=='0'">
379 <sources>$(RICHTEXT_SRC)</sources>
380 <msvc-headers>$(RICHTEXT_HDR)</msvc-headers>
381 </lib>
e80118cf
VS
382
383 <wxshortcut id="wxrichtext" cond="MONOLITHIC=='0' and USE_RICHTEXT=='1'"/>
3b2cb431
JS
384
385 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">richtext=richtextlib+richtextdll</set>
386
54429bb3
RD
387 <!-- ================================================================ -->
388 <!-- STC -->
389 <!-- ================================================================ -->
390
1ba904fe 391 <template id="stc_base" template="wxscintilla_cppflags">
54429bb3
RD
392 <library>wxscintilla</library>
393 </template>
394
395 <dll id="stcdll" template="wx_dll,stc_base"
396 cond="SHARED=='1' and USE_STC=='1' and MONOLITHIC=='0'">
397 <define>WXUSINGDLL</define>
398 <define>WXMAKINGDLL_STC</define>
399 <sources>$(STC_SRC)</sources>
400 <library>coredll</library>
401 <library>basedll</library>
402 <msvc-headers>$(STC_HDR)</msvc-headers>
403 </dll>
404
405 <lib id="stclib" template="wx_lib,stc_base"
406 cond="SHARED=='0' and USE_STC=='1' and MONOLITHIC=='0'">
407 <sources>$(STC_SRC)</sources>
408 <msvc-headers>$(STC_HDR)</msvc-headers>
409 </lib>
410
411 <wxshortcut id="wxstc" cond="MONOLITHIC=='0' and USE_STC=='1'"/>
412
413 <set var="MSVC6PRJ_MERGED_TARGETS_MULTILIB" append="1">stc=stclib+stcdll</set>
414
ddf98968 415</makefile>