wxWidgets/build/bakefiles/monolithic.bkl
Václav Slavík 6fd9f0a474 wxUSE_BASE fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-06-28 13:10:36 +00:00

28 lines
736 B
XML

<?xml version="1.0" ?>
<!-- $Id$ -->
<makefile>
<set var="MONOLIB_SRC">
<if cond="USE_GUI=='0'">
src/common/init.cpp $(BASE_SRC) $(BASE_AND_GUI_SRC)
</if>
<if cond="USE_GUI=='1'">
$(BASE_SRC) $(BASE_AND_GUI_SRC) $(CORE_SRC) $(HTML_SRC)
</if>
</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>