b00786ec12
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21528 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
26 lines
673 B
XML
26 lines
673 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)
|
|
</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>
|
|
</dll>
|
|
|
|
<lib id="monolib" template="wx_lib"
|
|
cond="SHARED=='0' and MONOLITHIC=='1'">
|
|
<define>wxUSE_BASE=1</define>
|
|
<sources>$(MONOLIB_SRC)</sources>
|
|
</lib>
|
|
|
|
</makefile>
|