]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/monolithic.bkl
100c5faca81b688e92a2457546ebf6935e019e39
[wxWidgets.git] / build / bakefiles / monolithic.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3 <makefile>
4
5 <set var="MONOLIB_SRC">
6 <if cond="USE_GUI=='0'">
7 src/common/init.cpp $(BASE_SRC)
8 </if>
9 <if cond="USE_GUI=='1'">
10 $(BASE_SRC) $(CORE_SRC) $(HTML_SRC)
11 </if>
12 </set>
13
14 <dll id="monodll" template="wx_dll"
15 cond="SHARED=='1' and MONOLITHIC=='1'">
16 <define>wxUSE_BASE</define>
17 <define>WXMAKINGDLL</define>
18 <sources>$(MONOLIB_SRC)</sources>
19
20 <library>$(LIB_ZLIB)</library>
21 <library>$(LIB_REGEX)</library>
22 <library>$(LIB_PNG)</library>
23 <library>$(LIB_JPEG)</library>
24 <library>$(LIB_TIFF)</library>
25 <library>$(LIB_ODBC)</library>
26 </dll>
27
28 <lib id="monolib" template="wx_lib"
29 cond="SHARED=='0' and MONOLITHIC=='1'">
30 <define>wxUSE_BASE</define>
31 <sources>$(MONOLIB_SRC)</sources>
32 </lib>
33
34 </makefile>