wxWidgets/build/bakefiles/monolithic.bkl
Václav Slavík a69544bf4d added expat and XML libraries
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22175 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-07-20 22:00:40 +00:00

27 lines
726 B
XML

<?xml version="1.0" ?>
<!-- $Id$ -->
<makefile>
<set var="MONOLIB_GUI_SRC">
<if cond="USE_GUI=='1'">$(CORE_SRC) $(HTML_SRC)</if>
</set>
<set var="MONOLIB_SRC">
$(BASE_SRC) $(BASE_AND_GUI_SRC) $(MONOLIB_GUI_SRC) $(XML_SRC)
</set>
<dll id="monodll" template="wx_dll"
cond="SHARED=='1' and MONOLITHIC=='1'">
<define>wxUSE_BASE=1</define>
<define>WXMAKINGDLL</define>
<sources>$(MONOLIB_SRC)</sources>
<ldlibs>$(EXTRALIBS_XML)</ldlibs>
</dll>
<lib id="monolib" template="wx_lib"
cond="SHARED=='0' and MONOLITHIC=='1'">
<define>wxUSE_BASE=1</define>
<sources>$(MONOLIB_SRC)</sources>
</lib>
</makefile>