]>
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 VS |
31 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
32 | ||
33 | <wx-lib>base</wx-lib> | |
e86e1522 VS |
34 | </dll> |
35 | ||
36 | <lib id="corelib" template="wx_lib" | |
37 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> | |
6fd9f0a4 | 38 | <define>wxUSE_BASE=0</define> |
e86e1522 | 39 | <sources>$(BASE_AND_GUI_SRC) $(CORE_SRC)</sources> |
ddf98968 VS |
40 | </lib> |
41 | ||
42 | ||
43 | <!-- ================================================================ --> | |
44 | <!-- wxHTML --> | |
45 | <!-- ================================================================ --> | |
46 | ||
47 | <dll id="htmldll" template="wx_dll" | |
e86e1522 | 48 | cond="SHARED=='1' and USE_GUI=='1' and MONOLITHIC=='0'"> |
ddf98968 VS |
49 | <define>WXMAKINGDLL</define> |
50 | <sources>$(HTML_SRC)</sources> | |
51 | <wx-lib>core</wx-lib> | |
e86e1522 | 52 | <wx-lib>base</wx-lib> |
ddf98968 VS |
53 | </dll> |
54 | ||
55 | <lib id="htmllib" template="wx_lib" | |
e86e1522 | 56 | cond="SHARED=='0' and USE_GUI=='1' and MONOLITHIC=='0'"> |
ddf98968 VS |
57 | <sources>$(HTML_SRC)</sources> |
58 | </lib> | |
59 | ||
60 | </makefile> |