From: John L. <jr...@us...> - 2005-11-24 21:34:29
|
Update of /cvsroot/wxlua/wxLua/util/build/bakefiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/wxLua/util/build/bakefiles Modified Files: options.bkl util.bkl Log Message: formatting for bakfiles added USE_WXLUAAPP, USE_WXLUAEDITAPP Index: options.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/bakefiles/options.bkl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** options.bkl 14 Jun 2005 21:44:42 -0000 1.2 --- options.bkl 24 Nov 2005 21:34:16 -0000 1.3 *************** *** 5,42 **** ! <!-- --> ! <!-- WXLUA-UTILITIES OPTIONS BAKEFILE --> ! <!-- --> ! <makefile> ! <!-- --> ! <!-- The list of wxLua OPTIONS DEFAULTS --> ! <!-- --> <set var="USE_BIN2C_DEFAULT">1</set> - - ! <!-- --> ! <!-- The list of wxArt2d OPTIONS --> ! <!-- --> <!-- options not tied to a specific module --> <if cond="TARGETING_IDE=='0'"> ! <option name="USE_BIN2C"> <values>0,1</values> <default-value>$(USE_BIN2C_DEFAULT)</default-value> <description>Does the wxLua utilities should be compiled ?</description> ! </option> </if> <if cond="TARGETING_IDE=='1'"> ! ! <!-- IDEs are less flexible; we have to set these as variables with the default values --> <set var="USE_BIN2C">$(USE_BIN2C_DEFAULT)</set> </if> ! </makefile> --- 5,42 ---- ! <!-- ====================================================================== --> ! <!-- WXLUA-UTILITIES OPTIONS BAKEFILE --> ! <!-- ====================================================================== --> ! <makefile> ! ! <!-- ================================================================== --> ! <!-- The list of wxLua OPTIONS DEFAULTS --> ! <!-- ================================================================== --> <set var="USE_BIN2C_DEFAULT">1</set> ! ! <!-- ================================================================== --> ! <!-- The list of utils OPTIONS --> ! <!-- ================================================================== --> <!-- options not tied to a specific module --> <if cond="TARGETING_IDE=='0'"> ! <option name="USE_BIN2C"> <values>0,1</values> <default-value>$(USE_BIN2C_DEFAULT)</default-value> <description>Does the wxLua utilities should be compiled ?</description> ! </option> </if> <if cond="TARGETING_IDE=='1'"> ! ! <!-- IDEs are less flexible; we have to set these as variables with the default values --> <set var="USE_BIN2C">$(USE_BIN2C_DEFAULT)</set> </if> ! </makefile> Index: util.bkl =================================================================== RCS file: /cvsroot/wxlua/wxLua/util/build/bakefiles/util.bkl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** util.bkl 20 Jun 2005 09:48:38 -0000 1.3 --- util.bkl 24 Nov 2005 21:34:16 -0000 1.4 *************** *** 5,14 **** ! <!-- --> ! <!-- WXLUA-UTILITIES BAKEFILE --> ! <!-- --> <makefile> ! <!-- This is required because it contains the definitions of a lot of utils --> <include file="../../../build/bakefiles/wxluabase.bkl"/> --- 5,15 ---- ! <!-- ====================================================================== --> ! <!-- WXLUA-UTILITIES BAKEFILE --> ! <!-- ====================================================================== --> ! <makefile> ! <!-- This is required because it contains the definitions of a lot of utils --> <include file="../../../build/bakefiles/wxluabase.bkl"/> *************** *** 16,24 **** <!-- required for copy-files tag --> <using module="datafiles"/> ! <!-- our options --> <include file="options.bkl"/> ! ! <!-- our base path --> <if cond="TARGETING_WIN32=='1'"> --- 17,32 ---- <!-- required for copy-files tag --> <using module="datafiles"/> ! ! <!-- ================================================================== --> ! <!-- The list of wxLua util OPTIONS --> ! <!-- ================================================================== --> ! <!-- our options --> <include file="options.bkl"/> ! ! <!-- ================================================================== --> ! <!-- VARIABLES --> ! <!-- ================================================================== --> ! <!-- our base path --> <if cond="TARGETING_WIN32=='1'"> *************** *** 30,35 **** <set var="SRCDIR">$(UTIL_BASEDIR)</set> <set var="BUILDDIR">$(FORMAT)</set> ! ! <!-- our utilities --> <exe id="util_bin2c" cond="USE_BIN2C=='1'"> --- 38,46 ---- <set var="SRCDIR">$(UTIL_BASEDIR)</set> <set var="BUILDDIR">$(FORMAT)</set> ! ! <!-- ================================================================== --> ! <!-- bin2c application target --> ! <!-- ================================================================== --> ! <!-- our utilities --> <exe id="util_bin2c" cond="USE_BIN2C=='1'"> |