]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/multilib.bkl
top_builddir is part of bakefile now
[wxWidgets.git] / build / bakefiles / multilib.bkl
CommitLineData
ddf98968
VS
1<?xml version="1.0" ?>
2<makefile>
e86e1522 3
ddf98968 4 <!-- ================================================================= -->
e86e1522 5 <!-- wxBase library -->
ddf98968
VS
6 <!-- ================================================================= -->
7
e86e1522 8 <dll id="basedll" template="wx_dll"
ddf98968
VS
9 cond="SHARED=='1' and MONOLITHIC=='0'">
10 <define>WXMAKINGDLL</define>
e86e1522
VS
11 <define>__WXBASE__</define>
12 <define>wxUSE_BASE=1</define>
13 <define>wxUSE_GUI=0</define>
14 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
15
ddf98968
VS
16 <library>$(LIB_ZLIB)</library>
17 <library>$(LIB_REGEX)</library>
18 <library>$(LIB_PNG)</library>
19 <library>$(LIB_JPEG)</library>
20 <library>$(LIB_TIFF)</library>
ddf98968
VS
21 </dll>
22
e86e1522 23 <lib id="baselib" template="wx_lib"
ddf98968 24 cond="SHARED=='0' and MONOLITHIC=='0'">
e86e1522
VS
25 <define>__WXBASE__</define>
26 <define>wxUSE_BASE=1</define>
27 <define>wxUSE_GUI=0</define>
28 <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources>
29 </lib>
30
31 <!-- ================================================================= -->
32 <!-- Main GUI library -->
33 <!-- ================================================================= -->
34
35 <dll id="coredll" template="wx_dll"
36 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
37 <define>WXMAKINGDLL</define>
38 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
39
40 <wx-lib>base</wx-lib>
41
42 <library>$(LIB_ODBC)</library>
43 </dll>
44
45 <lib id="corelib" template="wx_lib"
46 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
47 <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources>
ddf98968
VS
48 </lib>
49
50
51 <!-- ================================================================ -->
52 <!-- wxHTML -->
53 <!-- ================================================================ -->
54
55 <dll id="htmldll" template="wx_dll"
e86e1522 56 cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'">
ddf98968
VS
57 <define>WXMAKINGDLL</define>
58 <sources>$(HTML_SRC)</sources>
59 <wx-lib>core</wx-lib>
e86e1522 60 <wx-lib>base</wx-lib>
ddf98968
VS
61 </dll>
62
63 <lib id="htmllib" template="wx_lib"
e86e1522 64 cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'">
ddf98968
VS
65 <sources>$(HTML_SRC)</sources>
66 </lib>
67
68</makefile>