Edit

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

Branch :

  • Show log

    Commit

  • Author : Shawn Hargreaves
    Date : 2015-05-14 17:00:41
    Hash : 7eabe51e
    Message : Add ANGLE_REVISION sub-identifier to the DLL versioning scheme Change-Id: Ie9df84957801def2db72a382f4860bbe4e06002f Reviewed-on: https://chromium-review.googlesource.com/274051 Tested-by: Shawn Hargreaves <shawnhar@microsoft.com> Reviewed-by: Geoff Lang <geofflang@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/common/version.h
  • //
    // Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    #ifndef COMMON_VERSION_H_
    #define COMMON_VERSION_H_
    
    #include "id/commit.h"
    
    #define ANGLE_MAJOR_VERSION 2
    #define ANGLE_MINOR_VERSION 1
    
    #ifndef ANGLE_REVISION
    #define ANGLE_REVISION 0
    #endif
    
    #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_MACRO_STRINGIFY(ANGLE_REVISION) "." \
        ANGLE_COMMIT_HASH
    
    #endif // COMMON_VERSION_H_