]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/multilib.bkl
f61aab6618d838692d596e8d8bab3c1d854fa2cd
[wxWidgets.git] / build / bakefiles / multilib.bkl
1 <?xml version="1.0" ?>
2 <makefile>
3
4 <!-- ================================================================= -->
5 <!-- wxBase library -->
6 <!-- ================================================================= -->
7
8 <dll id="basedll" template="wx_dll"
9 cond="SHARED=='1' and MONOLITHIC=='0'">
10 <define>WXMAKINGDLL</define>
11 <define>wxUSE_BASE=1</define>
12 <define>wxUSE_GUI=0</define>
13 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
14 </dll>
15
16 <lib id="baselib" template="wx_lib"
17 cond="SHARED=='0' and MONOLITHIC=='0'">
18 <define>wxUSE_BASE=1</define>
19 <define>wxUSE_GUI=0</define>
20 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
21 </lib>
22
23 <!-- ================================================================= -->
24 <!-- Main GUI library -->
25 <!-- ================================================================= -->
26
27 <dll id="coredll" template="wx_dll"
28 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
29 <define>WXMAKINGDLL</define>
30 <define>wxUSE_BASE=0</define>
31 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
32 <library>basedll</library>
33 </dll>
34
35 <lib id="corelib" template="wx_lib"
36 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
37 <define>wxUSE_BASE=0</define>
38 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
39 </lib>
40
41
42 <!-- ================================================================ -->
43 <!-- wxHTML -->
44 <!-- ================================================================ -->
45
46 <dll id="htmldll" template="wx_dll"
47 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
48 <define>WXMAKINGDLL</define>
49 <sources>$(HTML_SRC)</sources>
50 <library>coredll</library>
51 <library>basedll</library>
52 </dll>
53
54 <lib id="htmllib" template="wx_lib"
55 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
56 <sources>$(HTML_SRC)</sources>
57 </lib>
58
59 </makefile>