]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/monolithic.bkl
fixed unused variable warnings
[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) $(BASE_AND_GUI_SRC)
8 </if>
9 <if cond="USE_GUI=='1'">
10 $(BASE_SRC) $(BASE_AND_GUI_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>__WXBASE__</define>
17 <define>wxUSE_BASE=1</define>
18 <define>WXMAKINGDLL</define>
19 <sources>$(MONOLIB_SRC)</sources>
20 </dll>
21
22 <lib id="monolib" template="wx_lib"
23 cond="SHARED=='0' and MONOLITHIC=='1'">
24 <define>__WXBASE__</define>
25 <define>wxUSE_BASE=1</define>
26 <sources>$(MONOLIB_SRC)</sources>
27 </lib>
28
29 </makefile>