]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/multilib.bkl
samples must use same settings as the libraries
[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
e86e1522 10 <dll id="basedll" template="wx_dll"
ddf98968 11 cond="SHARED=='1' and MONOLITHIC=='0'">
81659205 12 <define>WXMAKINGDLL_BASE</define>
e86e1522
VS
13 <define>wxUSE_BASE=1</define>
14 <define>wxUSE_GUI=0</define>
15 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
ddf98968
VS
16 </dll>
17
e86e1522 18 <lib id="baselib" template="wx_lib"
ddf98968 19 cond="SHARED=='0' and MONOLITHIC=='0'">
e86e1522
VS
20 <define>wxUSE_BASE=1</define>
21 <define>wxUSE_GUI=0</define>
22 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
23 </lib>
24
25 <!-- ================================================================= -->
26 <!-- Main GUI library -->
27 <!-- ================================================================= -->
28
29 <dll id="coredll" template="wx_dll"
30 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
3d97f182 31 <define>WXUSINGDLL_BASE</define>
81659205 32 <define>WXMAKINGDLL_CORE</define>
6fd9f0a4 33 <define>wxUSE_BASE=0</define>
e86e1522 34 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
6c6df83a 35 <library>basedll</library>
e86e1522
VS
36 </dll>
37
38 <lib id="corelib" template="wx_lib"
39 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
6fd9f0a4 40 <define>wxUSE_BASE=0</define>
e86e1522 41 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
ddf98968
VS
42 </lib>
43
44
45 <!-- ================================================================ -->
46 <!-- wxHTML -->
47 <!-- ================================================================ -->
48
49 <dll id="htmldll" template="wx_dll"
e86e1522 50 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
3d97f182
VS
51 <define>WXUSINGDLL_BASE</define>
52 <define>WXUSINGDLL_CORE</define>
81659205 53 <define>WXMAKINGDLL_HTML</define>
ddf98968 54 <sources>$(HTML_SRC)</sources>
6c6df83a
VS
55 <library>coredll</library>
56 <library>basedll</library>
ddf98968
VS
57 </dll>
58
59 <lib id="htmllib" template="wx_lib"
e86e1522 60 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
ddf98968
VS
61 <sources>$(HTML_SRC)</sources>
62 </lib>
63
64</makefile>