ddf9896893
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21327 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<?xml version="1.0" ?>
|
|
<makefile>
|
|
|
|
<!-- ================================================================= -->
|
|
<!-- Main GUI library -->
|
|
<!-- ================================================================= -->
|
|
|
|
<dll id="coredll" template="wx_dll"
|
|
cond="SHARED=='1' and MONOLITHIC=='0'">
|
|
<define>WXMAKINGDLL</define>
|
|
<sources>$(BASE_SRC) $(CORE_SRC)</sources>
|
|
|
|
<library>$(LIB_ZLIB)</library>
|
|
<library>$(LIB_REGEX)</library>
|
|
<library>$(LIB_PNG)</library>
|
|
<library>$(LIB_JPEG)</library>
|
|
<library>$(LIB_TIFF)</library>
|
|
<library>$(LIB_ODBC)</library>
|
|
</dll>
|
|
|
|
<lib id="corelib" template="wx_lib"
|
|
cond="SHARED=='0' and MONOLITHIC=='0'">
|
|
<sources>$(BASE_SRC) $(CORE_SRC)</sources>
|
|
</lib>
|
|
|
|
|
|
<!-- ================================================================ -->
|
|
<!-- wxHTML -->
|
|
<!-- ================================================================ -->
|
|
|
|
<dll id="htmldll" template="wx_dll"
|
|
cond="SHARED=='1' and MONOLITHIC=='0'">
|
|
<define>WXMAKINGDLL</define>
|
|
<sources>$(HTML_SRC)</sources>
|
|
<wx-lib>core</wx-lib>
|
|
</dll>
|
|
|
|
<lib id="htmllib" template="wx_lib"
|
|
cond="SHARED=='0' and MONOLITHIC=='0'">
|
|
<sources>$(HTML_SRC)</sources>
|
|
</lib>
|
|
|
|
</makefile>
|