-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h.in
39 lines (30 loc) · 976 Bytes
/
version.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* SPDX-License-Identifier: Apache-2.0 */
/*
* Copyright (C) 2009-@LMS_VERSION_YEAR@ Intel Corporation
*/
/*++
@file: version.h
--*/
#ifndef __VERSION_H__
#define __VERSION_H__
#ifdef __cplusplus
extern "C" {
#endif
#define MAJOR_VERSION @LMS_VERSION_MAJOR@
#define MINOR_VERSION @LMS_VERSION_MINOR@
#define QUICK_FIX_NUMBER @LMS_VERSION_PATCH@
/** Build Version Number. Updated automatically by build scripts */
#define VER_BUILD @LMS_VERSION_BUILD@
/** Build Version String. Updated automatically by build scripts */
#define VER_BUILD_STR "@LMS_VERSION_BUILD@"
/** Adding the current year date string for use in updating the year component of the
*** displayed copyright message.
*** the string needs to be the full 4 char value without spaces or special characters.
*** For example:
*** "2012"
*/
#define CURRENT_YEAR_STRING "@LMS_VERSION_YEAR@"
#ifdef __cplusplus
}
#endif
#endif // __VERSION_H__