defined __WXBASE__ when building the monolib
[wxWidgets.git] / build / bakefiles / monolithic.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3 <makefile>
4
5     <dll id="monodll" template="wx_dll"
6          cond="SHARED=='1' and MONOLITHIC=='1'">
7         <define>__WXBASE__</define> 
8         <define>WXMAKINGDLL</define>
9         <sources>$(BASE_SRC) $(CORE_SRC) $(HTML_SRC)</sources>
10       
11         <library>$(LIB_ZLIB)</library>
12         <library>$(LIB_REGEX)</library>
13         <library>$(LIB_PNG)</library>
14         <library>$(LIB_JPEG)</library>
15         <library>$(LIB_TIFF)</library>
16         <library>$(LIB_ODBC)</library>
17     </dll>
18     
19     <lib id="monolib" template="wx_lib"
20          cond="SHARED=='0' and MONOLITHIC=='1'">
21         <define>__WXBASE__</define> 
22         <sources>$(BASE_SRC) $(CORE_SRC) $(HTML_SRC)</sources>
23     </lib>
24
25 </makefile>