]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/monolithic.bkl
fixed include paths to our copies of 3rd party libs
[wxWidgets.git] / build / bakefiles / monolithic.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3 <makefile>
4
5 <set var="MONOLIB_GUI_SRC">
6 <if cond="USE_GUI=='1'">$(CORE_SRC) $(HTML_SRC)</if>
7 </set>
8 <set var="MONOLIB_SRC">
9 $(BASE_SRC) $(BASE_AND_GUI_SRC) $(MONOLIB_GUI_SRC)
10 </set>
11
12 <dll id="monodll" template="wx_dll"
13 cond="SHARED=='1' and MONOLITHIC=='1'">
14 <define>wxUSE_BASE=1</define>
15 <define>WXMAKINGDLL</define>
16 <sources>$(MONOLIB_SRC)</sources>
17 </dll>
18
19 <lib id="monolib" template="wx_lib"
20 cond="SHARED=='0' and MONOLITHIC=='1'">
21 <define>wxUSE_BASE=1</define>
22 <sources>$(MONOLIB_SRC)</sources>
23 </lib>
24
25 </makefile>