]>
Commit | Line | Data |
---|---|---|
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>wxUSE_BASE=1</define> |
12 | <define>wxUSE_GUI=0</define> | |
13 | <sources>$(BASE_SRC) $(BASE_AND_GUI_SRC)</sources> | |
ddf98968 VS |
14 | </dll> |
15 | ||
e86e1522 | 16 | <lib id="baselib" template="wx_lib" |
ddf98968 | 17 | cond="SHARED=='0' and MONOLITHIC=='0'"> |
e86e1522 VS |
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> | |
6fd9f0a4 | 30 | <define>wxUSE_BASE=0</define> |
e86e1522 | 31 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
6c6df83a | 32 | <library>basedll</library> |
e86e1522 VS |
33 | </dll> |
34 | ||
35 | <lib id="corelib" template="wx_lib" | |
36 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
6fd9f0a4 | 37 | <define>wxUSE_BASE=0</define> |
e86e1522 | 38 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
ddf98968 VS |
39 | </lib> |
40 | ||
41 | ||
42 | <!-- ================================================================ --> | |
43 | <!-- wxHTML --> | |
44 | <!-- ================================================================ --> | |
45 | ||
46 | <dll id="htmldll" template="wx_dll" | |
e86e1522 | 47 | cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> |
ddf98968 VS |
48 | <define>WXMAKINGDLL</define> |
49 | <sources>$(HTML_SRC)</sources> | |
6c6df83a VS |
50 | <library>coredll</library> |
51 | <library>basedll</library> | |
ddf98968 VS |
52 | </dll> |
53 | ||
54 | <lib id="htmllib" template="wx_lib" | |
e86e1522 | 55 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> |
ddf98968 VS |
56 | <sources>$(HTML_SRC)</sources> |
57 | </lib> | |
58 | ||
59 | </makefile> |