From: Francesco M. <fr...@us...> - 2006-02-03 15:43:06
|
Update of /cvsroot/wxlua/wxLua/build/bakefiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20651/build/bakefiles Modified Files: wxhacks.bkl Log Message: Added install rules for wxBind sources and makefiles Index: wxhacks.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/bakefiles/wxhacks.bkl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wxhacks.bkl 2 Feb 2006 18:46:43 -0000 1.4 --- wxhacks.bkl 3 Feb 2006 15:42:54 -0000 1.5 *************** *** 52,72 **** http://sourceforge.net/tracker/index.php?func=detail&aid=1254557&group_id=9863&atid=309863 - wxCode bakefiles don't use its own options (BUILD,UNICODE,SHARED) and then sets WX_* options from - their values; since wxCode components are "wx addons" we will use directly the WX_* options. - Thus we need them also on Unix formats and thus we declare them here. All these options are set (for 'autoconf' format) by the AM_WXPRESETS macro ! (see wxpresets.m4 and wxcode.m4 macro files). --> ! <option name="WX_DEBUG"/> ! <option name="WX_UNICODE"/> ! <option name="WX_SHARED"/> ! <option name="WX_DIR"/> ! <option name="WX_VERSION"/> ! <option name="WX_PORT"/> <!-- these option values are available only with autoconf (and using wxpresets.m4) --> ! <option name="WX_VERSION_MAJOR"/> ! <option name="WX_VERSION_MINOR"/> ! <option name="WX_GTKPORT_VERSION"/> </if> <if cond="TARGETING_WIN32=='1'"> --- 52,149 ---- http://sourceforge.net/tracker/index.php?func=detail&aid=1254557&group_id=9863&atid=309863 All these options are set (for 'autoconf' format) by the AM_WXPRESETS macro ! (see wxpresets.m4). ! The option descriptions, values and default-values tags are used only by the GNU format (currently). --> ! ! <!-- The directory where wxWidgets is installed: --> ! <if cond="not isdefined('WX_DIR')"> ! <set var="WX_DIR_DEFAULT" overwrite="0">`wx-config --prefix`</set> ! <option name="WX_DIR" category="path"> ! <default-value>$(WX_DIR_DEFAULT)</default-value> ! <description> ! The directory where wxWidgets library is installed ! </description> ! </option> ! </if> ! ! <!-- This is a standard option that determines --> ! <!-- whether the user wants to build this library as --> ! <!-- a dll or as a static library. --> ! <if cond="not isdefined('WX_SHARED')"> ! <set var="WX_SHARED_DEFAULT" overwrite="0">0</set> ! <option name="WX_SHARED"> ! <values>0,1</values> ! <values-description>,DLL</values-description> ! <default-value>$(WX_SHARED_DEFAULT)</default-value> ! <description> ! Use DLL build of wx library to use? ! </description> ! </option> ! </if> ! ! <!-- Configuration for building the bakefile with --> ! <!-- unicode strings or not (unicode or ansi). --> ! <if cond="not isdefined('WX_UNICODE')"> ! <set var="WX_UNICODE_DEFAULT" overwrite="0">0</set> ! <option name="WX_UNICODE"> ! <values>0,1</values> ! <values-description>,Unicode</values-description> ! <default-value>$(WX_UNICODE_DEFAULT)</default-value> ! <description> ! Compile Unicode build of wxWidgets? ! </description> ! </option> ! </if> ! ! <if cond="not isdefined('WX_DEBUG')"> ! <set var="WX_DEBUG_DEFAULT" overwrite="0">1</set> ! <option name="WX_DEBUG"> ! <values>0,1</values> ! <values-description>Release,Debug</values-description> ! <default-value>$(WX_DEBUG_DEFAULT)</default-value> ! <description> ! Use debug build of wxWidgets (define __WXDEBUG__)? ! </description> ! </option> ! </if> ! ! <if cond="not isdefined('WX_VERSION')"> ! <set var="WX_VERSION_DEFAULT" overwrite="0">27</set> ! <option name="WX_VERSION"> ! <default-value>$(WX_VERSION_DEFAULT)</default-value> ! <description> ! Version of the wx library to build against. ! </description> ! </option> ! </if> ! ! <if cond="not isdefined('WX_PORT')"> ! <set var="WX_PORT_DEFAULT" overwrite="0">gtk</set> ! <option name="WX_PORT"> ! <default-value>$(WX_PORT_DEFAULT)</default-value> ! <description> ! Port of the wx library to build against (wxGTK, wxMac, wxMSW, etc). ! </description> ! </option> ! </if> ! <!-- these option values are available only with autoconf (and using wxpresets.m4) --> ! <option name="WX_VERSION_MAJOR"> ! <values>2,3</values> ! <default-value>2</default-value> ! <description>wxWidgets major version number</description> ! </option> ! <option name="WX_VERSION_MINOR"> ! <values>1,2,3,4,5,6,7,8,9,0</values> ! <default-value>6</default-value> ! <description>wxWidgets minor version number</description> ! </option> ! <option name="WX_GTKPORT_VERSION"> ! <values>1,2</values> ! <default-value>2</default-value> ! <description>The version of GTK+ library used by wxWidgets</description> ! </option> </if> <if cond="TARGETING_WIN32=='1'"> |