]> git.saurik.com Git - wxWidgets.git/commitdiff
added support for the 'richtext' library
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 10 Oct 2006 09:54:26 +0000 (09:54 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 10 Oct 2006 09:54:26 +0000 (09:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/wxpresets/presets/wx.bkl
build/bakefiles/wxpresets/presets/wx_win32.bkl

index e23432c204c4d47cdac69ad5c657e8057bcda41d..0b75822c9d992eac58ac8358d40ecc2c0ba95761 100644 (file)
@@ -15,7 +15,9 @@
     <set var="WX_PRESETS_VERSION">3</set>
 
     <!-- list of known libraries used by wx-lib tag defined in wx_unix.bkl and wx_win32.bkl -->
-    <set var="LIB_LIST">base core net xml odbc xrc html adv media gl dbgrid qa aui</set>
+    <set var="LIB_LIST">
+        base core net xml odbc xrc html adv media gl dbgrid qa aui richtext
+    </set>
 
     <!-- NOTE: refer to the NET contrib using NETUTILS instead of NET
                (which is already in LIB_LIST) -->
index e7ae4f84700486c12d96a223c8a35cff92a36b3f..64c0441bd68f4faa87a77f9cf69092a448bf7d9c 100644 (file)
@@ -254,6 +254,12 @@ FIXME: this template has (at least) the following bugs:
         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_aui</if>
         <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_aui</if>
     </set>
+    <set var="WXLIB_RICHTEXT_NAME">
+        <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)_richtext</if>
+        <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)d_richtext</if>
+        <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WXPORT)$(WX_VERSION)u_richtext</if>
+        <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WXPORT)$(WX_VERSION)ud_richtext</if>
+    </set>
 
 
 
@@ -295,6 +301,7 @@ FIXME: this template has (at least) the following bugs:
         <if cond="value=='dbgrid'"><sys-lib>$(WXLIB_DBGRID_NAME)</sys-lib></if>
         <if cond="value=='qa'"><sys-lib>$(WXLIB_QA_NAME)</sys-lib></if>
         <if cond="value=='aui'"><sys-lib>$(WXLIB_AUI_NAME)</sys-lib></if>
+        <if cond="value=='richtext'"><sys-lib>$(WXLIB_RICHTEXT_NAME)</sys-lib></if>
 
         <!-- wx-lib can be used also to link against contrib libraries
              (which always have the same name, regardless of WX_MONOLITHIC value) -->