]>
Commit | Line | Data |
---|---|---|
ddf98968 | 1 | <?xml version="1.0" ?> |
ba28d9bb | 2 | <!-- $Id$ --> |
ddf98968 | 3 | <makefile> |
6ae02da4 VS |
4 | |
5 | <set var="MONOLIB_SRC"> | |
6 | <if cond="USE_GUI=='0'"> | |
e86e1522 | 7 | src/common/init.cpp $(BASE_SRC) $(BASE_AND_GUI_SRC) |
6ae02da4 VS |
8 | </if> |
9 | <if cond="USE_GUI=='1'"> | |
e86e1522 | 10 | $(BASE_SRC) $(BASE_AND_GUI_SRC) $(CORE_SRC) $(HTML_SRC) |
6ae02da4 VS |
11 | </if> |
12 | </set> | |
ddf98968 VS |
13 | |
14 | <dll id="monodll" template="wx_dll" | |
15 | cond="SHARED=='1' and MONOLITHIC=='1'"> | |
e86e1522 VS |
16 | <define>__WXBASE__</define> |
17 | <define>wxUSE_BASE=1</define> | |
ddf98968 | 18 | <define>WXMAKINGDLL</define> |
6ae02da4 | 19 | <sources>$(MONOLIB_SRC)</sources> |
e86e1522 | 20 | |
ddf98968 VS |
21 | <library>$(LIB_ZLIB)</library> |
22 | <library>$(LIB_REGEX)</library> | |
23 | <library>$(LIB_PNG)</library> | |
24 | <library>$(LIB_JPEG)</library> | |
25 | <library>$(LIB_TIFF)</library> | |
26 | <library>$(LIB_ODBC)</library> | |
27 | </dll> | |
28 | ||
29 | <lib id="monolib" template="wx_lib" | |
30 | cond="SHARED=='0' and MONOLITHIC=='1'"> | |
e86e1522 VS |
31 | <define>__WXBASE__</define> |
32 | <define>wxUSE_BASE=1</define> | |
6ae02da4 | 33 | <sources>$(MONOLIB_SRC)</sources> |
ddf98968 VS |
34 | </lib> |
35 | ||
36 | </makefile> |