version.bkl

来自「A*算法 A*算法 A*算法 A*算法A*算法A*算法」· BKL 代码 · 共 92 行

BKL
92
字号
<?xml version="1.0" ?>
<!-- $Id: version.bkl,v 1.2.2.2 2006/03/16 14:45:45 JS Exp $ -->

<makefile>
    
    <!-- ================================================================== -->
    <!--                      Handling of binary compatiblity:              -->
    <!-- ================================================================== -->

    <!--
       We use libtool CURRENT:REVISION:AGE versioning scheme. Quoting libtool
       documentation on how to handle the values:
        
       1. Start with version information of `0:0:0' for each libtool library.
     
       2. Update the version information only immediately before a public
          release of your software.  More frequent updates are unnecessary,
          and only guarantee that the current interface number gets larger
          faster.
     
       3. If the library source code has changed at all since the last
          update, then increment REVISION (`C:R:A' becomes `C:r+1:A').
     
       4. If any interfaces have been added, removed, or changed since the
          last update, increment CURRENT, and set REVISION to 0.
     
       5. If any interfaces have been added since the last public release,
          then increment AGE.
     
       6. If any interfaces have been removed since the last public release,
          then set AGE to 0.
    -->
    <set var="WX_CURRENT">3</set>
    <set var="WX_REVISION">1</set>
    <set var="WX_AGE">3</set>


    <!-- ================================================================== -->
    <!--                        Library version number:                     -->
    <!-- ================================================================== -->

    <!-- extract wx version number from wx/version.h: -->
    <set var="WXVER_MAJOR">$(wxwin.getVersionMajor())</set>
    <set var="WXVER_MINOR">$(wxwin.getVersionMinor())</set>
    <set var="WXVER_RELEASE">$(wxwin.getVersionRelease())</set>



    <!-- ================================================================== -->
    <!--                          Derived variables:                        -->
    <!-- ================================================================== -->

    <!-- set misc helper variables: -->

    <set var="WX_RELEASE" make_var="1">
        $(WXVER_MAJOR).$(WXVER_MINOR)
    </set>
    <set var="WX_RELEASE_NODOT" make_var="1">
        $(WXVER_MAJOR)$(WXVER_MINOR)
    </set>
    <set var="WX_VERSION" make_var="1">
        $(WX_RELEASE).$(WXVER_RELEASE)
    </set>
    <set var="WX_VERSION_NODOT" make_var="1">
        $(WX_RELEASE_NODOT)$(WXVER_RELEASE)
    </set>

    <set var="WX_STABLE_BRANCH">$(int(int(WXVER_MINOR) % 2 == 0))</set>

    <!-- in unstable branch, binary compat. changes with every release, check
         for it: -->
    <if cond="WX_STABLE_BRANCH=='0' and int(WX_CURRENT)!=int(WXVER_RELEASE)">
        <error>Forgot to update WX_CURRENT/WX_REVISION/WX_AGE?</error>
    </if>
    <set var="WXSOVERSION">
        $(int(WX_CURRENT)-int(WX_AGE)).$(WX_AGE).$(WX_REVISION)
    </set>

    <!-- FIXME: until libtool scheme is implemented in bakefile -->
    <set var="WXMACVERSION_CMD">
        <if cond="PLATFORM_MACOSX=='1'">
            -compatibility_version $(WX_AGE).0 -current_version $(WX_AGE).$(WX_REVISION)
        </if>
    </set>

    <set var="WXWIN32DLLVERSION">
        <if cond="WX_STABLE_BRANCH=='1'">$(WX_RELEASE_NODOT)</if>
        <if cond="WX_STABLE_BRANCH=='0'">$(WX_VERSION_NODOT)</if>
    </set>

</makefile>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?