]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/multilib.bkl
(re)added MSLU support to Unicode builds
[wxWidgets.git] / build / bakefiles / multilib.bkl
CommitLineData
ddf98968 1<?xml version="1.0" ?>
cb8bbc13
VS
2<!-- $Id$ -->
3
ddf98968 4<makefile>
e86e1522 5
ddf98968 6 <!-- ================================================================= -->
e86e1522 7 <!-- wxBase library -->
ddf98968
VS
8 <!-- ================================================================= -->
9
3560dc76 10 <dll id="basedll" template="wx_base_dll"
ddf98968 11 cond="SHARED=='1' and MONOLITHIC=='0'">
81659205 12 <define>WXMAKINGDLL_BASE</define>
e86e1522 13 <define>wxUSE_BASE=1</define>
e86e1522 14 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
390c0cfb 15 <msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers>
74e73714 16 <msvc-copy-setup-h/>
ddf98968
VS
17 </dll>
18
3560dc76 19 <lib id="baselib" template="wx_base_lib"
ddf98968 20 cond="SHARED=='0' and MONOLITHIC=='0'">
e86e1522 21 <define>wxUSE_BASE=1</define>
e86e1522 22 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
390c0cfb 23 <msvc-headers>$(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)</msvc-headers>
13cb46e0 24 <msvc-copy-setup-h/>
e86e1522 25 </lib>
7c4728f6
VS
26
27
28 <!-- ================================================================= -->
29 <!-- wxNet library -->
30 <!-- ================================================================= -->
31
32 <dll id="netdll" template="wx_base_dll"
33 cond="SHARED=='1' and MONOLITHIC=='0'">
34 <define>WXUSINGDLL</define>
35 <define>WXMAKINGDLL_NET</define>
36 <sources>$(NET_SRC)</sources>
37 <msvc-headers>$(NET_CMN_HDR) $(NET_PLATFORM_HDR)</msvc-headers>
38 <library>basedll</library>
39 </dll>
40
41 <lib id="netlib" template="wx_base_lib"
42 cond="SHARED=='0' and MONOLITHIC=='0'">
43 <define>WXUSINGDLL</define>
44 <define>WXMAKINGDLL_NET</define>
45 <sources>$(NET_SRC)</sources>
46 <msvc-headers>$(NET_CMN_HDR)</msvc-headers>
47 </lib>
e86e1522 48
7c4728f6 49
e86e1522
VS
50 <!-- ================================================================= -->
51 <!-- Main GUI library -->
52 <!-- ================================================================= -->
53
54 <dll id="coredll" template="wx_dll"
55 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
a7140600 56 <define>WXUSINGDLL</define>
81659205 57 <define>WXMAKINGDLL_CORE</define>
6fd9f0a4 58 <define>wxUSE_BASE=0</define>
e86e1522 59 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
390c0cfb 60 <msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers>
6c6df83a 61 <library>basedll</library>
e86e1522
VS
62 </dll>
63
64 <lib id="corelib" template="wx_lib"
65 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
6fd9f0a4 66 <define>wxUSE_BASE=0</define>
e86e1522 67 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
390c0cfb 68 <msvc-headers>$(ALL_GUI_HEADERS)</msvc-headers>
ddf98968 69 </lib>
13cb46e0
VS
70
71
72 <!-- ================================================================= -->
73 <!-- "Advanced" controls library -->
74 <!-- ================================================================= -->
75
76 <dll id="advdll" template="wx_dll"
77 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
78 <define>WXUSINGDLL</define>
79 <define>WXMAKINGDLL_ADV</define>
80 <sources>$(ADVANCED_SRC)</sources>
81 <msvc-headers>$(ADVANCED_HDR)</msvc-headers>
82 <library>coredll</library>
83 <library>basedll</library>
84 </dll>
85
86 <lib id="advlib" template="wx_lib"
87 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
88 <sources>$(ADVANCED_SRC)</sources>
89 <msvc-headers>$(ADVANCED_HDR)</msvc-headers>
90 </lib>
bb41dcbe
VS
91
92
93 <!-- ================================================================= -->
94 <!-- DB classes library -->
95 <!-- ================================================================= -->
96
83b9886f 97 <dll id="odbcdll" template="wx_base_dll"
bb41dcbe
VS
98 cond="SHARED=='1' and USE_GUI=='1' and USE_ODBC=='1' and MONOLITHIC=='0'">
99 <define>WXUSINGDLL</define>
100 <define>WXMAKINGDLL_ODBC</define>
101 <sources>$(ODBC_SRC)</sources>
102 <msvc-headers>$(ODBC_HDR)</msvc-headers>
bb41dcbe
VS
103 <library>basedll</library>
104 <ldlibs>$(EXTRALIBS_ODBC)</ldlibs>
105 </dll>
106
83b9886f 107 <lib id="odbclib" template="wx_base_lib"
bb41dcbe
VS
108 cond="SHARED=='0' and USE_GUI=='1' and USE_ODBC=='1' and MONOLITHIC=='0'">
109 <sources>$(ODBC_SRC)</sources>
110 <msvc-headers>$(ODBC_HDR)</msvc-headers>
111 </lib>
83b9886f
VS
112
113
114 <dll id="dbgriddll" template="wx_dll"
115 cond="SHARED=='1' and USE_GUI=='1' and USE_ODBC=='1' and MONOLITHIC=='0'">
116 <define>WXUSINGDLL</define>
117 <define>WXMAKINGDLL_DBGRID</define>
118 <sources>$(DBGRID_SRC)</sources>
119 <msvc-headers>$(DBGRID_HDR)</msvc-headers>
120 <library>advdll</library>
121 <library>odbcdll</library>
122 <library>coredll</library>
123 <library>basedll</library>
124 </dll>
125
126 <lib id="dbgridlib" template="wx_lib"
127 cond="SHARED=='0' and USE_GUI=='1' and USE_ODBC=='1' and MONOLITHIC=='0'">
128 <sources>$(DBGRID_SRC)</sources>
129 <msvc-headers>$(DBGRID_HDR)</msvc-headers>
130 </lib>
ddf98968
VS
131
132
133 <!-- ================================================================ -->
134 <!-- wxHTML -->
135 <!-- ================================================================ -->
136
137 <dll id="htmldll" template="wx_dll"
4d264332 138 cond="SHARED=='1' and USE_HTML=='1' and MONOLITHIC=='0'">
a7140600 139 <define>WXUSINGDLL</define>
81659205 140 <define>WXMAKINGDLL_HTML</define>
ddf98968 141 <sources>$(HTML_SRC)</sources>
6c6df83a
VS
142 <library>coredll</library>
143 <library>basedll</library>
390c0cfb 144 <msvc-headers>$(HTML_HDR)</msvc-headers>
ddf98968
VS
145 </dll>
146
147 <lib id="htmllib" template="wx_lib"
4d264332 148 cond="SHARED=='0' and USE_HTML=='1' and MONOLITHIC=='0'">
ddf98968 149 <sources>$(HTML_SRC)</sources>
390c0cfb 150 <msvc-headers>$(HTML_HDR)</msvc-headers>
ddf98968 151 </lib>
4d264332
VS
152
153 <!-- ================================================================ -->
154 <!-- OpenGL -->
155 <!-- ================================================================ -->
156
157 <!-- included by wx.bkl from opengl.bkl -->
a69544bf
VS
158
159
160 <!-- ================================================================ -->
161 <!-- XML -->
162 <!-- ================================================================ -->
163
164 <dll id="xmldll" template="wx_base_dll"
165 cond="SHARED=='1' and MONOLITHIC=='0'">
166 <define>WXUSINGDLL</define>
167 <define>WXMAKINGDLL_XML</define>
168 <sources>$(XML_SRC)</sources>
390c0cfb 169 <msvc-headers>$(XML_HDR)</msvc-headers>
a69544bf
VS
170 <library>basedll</library>
171 <ldlibs>$(EXTRALIBS_XML)</ldlibs>
172 </dll>
173
174 <lib id="xmllib" template="wx_base_lib"
175 cond="SHARED=='0' and MONOLITHIC=='0'">
176 <sources>$(XML_SRC)</sources>
390c0cfb 177 <msvc-headers>$(XML_HDR)</msvc-headers>
a69544bf 178 </lib>
ddf98968
VS
179
180</makefile>