Edit

kc3-lang/angle/src/common/version.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2014-06-12 13:41:17
    Hash : 9c4b24a5
    Message : Use commit_id.py on Windows, and handle missing git. This allows us to delete the Windows batch file. Changes the commit_id script to take the working directory so that it can be called from a different working directory than the angle repository is in. Renames the generated commit header to angle_commit.h. This is being written to the shared generated code directory for the entire build, and "commit.h" is insufficiently unique. BUG=angle:669 Change-Id: I35e80411a7e8ba1e02ce3f6a4fc54ed4dbc918f3 Reviewed-on: https://chromium-review.googlesource.com/202048 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Jamie Madill <jmadill@chromium.org>

  • src/common/version.h
  • #include "id/commit.h"
    
    #define ANGLE_MAJOR_VERSION 2
    #define ANGLE_MINOR_VERSION 1
    
    #define ANGLE_STRINGIFY(x)       #x
    #define ANGLE_MACRO_STRINGIFY(x) ANGLE_STRINGIFY(x)
    
    #define ANGLE_VERSION_STRING                       \
        ANGLE_MACRO_STRINGIFY(ANGLE_MAJOR_VERSION) "." \
        ANGLE_MACRO_STRINGIFY(ANGLE_MINOR_VERSION) "." \
        ANGLE_COMMIT_HASH