]>
Commit | Line | Data |
---|---|---|
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 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 | ||
3560dc76 | 18 | <lib id="baselib" template="wx_base_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'"> | |
a7140600 | 31 | <define>WXUSINGDLL</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" | |
4d264332 | 50 | cond="SHARED=='1' and USE_HTML=='1' and MONOLITHIC=='0'"> |
a7140600 | 51 | <define>WXUSINGDLL</define> |
81659205 | 52 | <define>WXMAKINGDLL_HTML</define> |
ddf98968 | 53 | <sources>$(HTML_SRC)</sources> |
6c6df83a VS |
54 | <library>coredll</library> |
55 | <library>basedll</library> | |
ddf98968 VS |
56 | </dll> |
57 | ||
58 | <lib id="htmllib" template="wx_lib" | |
4d264332 | 59 | cond="SHARED=='0' and USE_HTML=='1' and MONOLITHIC=='0'"> |
ddf98968 VS |
60 | <sources>$(HTML_SRC)</sources> |
61 | </lib> | |
4d264332 VS |
62 | |
63 | <!-- ================================================================ --> | |
64 | <!-- OpenGL --> | |
65 | <!-- ================================================================ --> | |
66 | ||
67 | <!-- included by wx.bkl from opengl.bkl --> | |
a69544bf VS |
68 | |
69 | ||
70 | <!-- ================================================================ --> | |
71 | <!-- XML --> | |
72 | <!-- ================================================================ --> | |
73 | ||
74 | <dll id="xmldll" template="wx_base_dll" | |
75 | cond="SHARED=='1' and MONOLITHIC=='0'"> | |
76 | <define>WXUSINGDLL</define> | |
77 | <define>WXMAKINGDLL_XML</define> | |
78 | <sources>$(XML_SRC)</sources> | |
79 | <library>basedll</library> | |
80 | <ldlibs>$(EXTRALIBS_XML)</ldlibs> | |
81 | </dll> | |
82 | ||
83 | <lib id="xmllib" template="wx_base_lib" | |
84 | cond="SHARED=='0' and MONOLITHIC=='0'"> | |
85 | <sources>$(XML_SRC)</sources> | |
86 | </lib> | |
ddf98968 VS |
87 | |
88 | </makefile> |