blob: 81cb62f2bc0e300b9bf611eef42ceaa07cf54bb7 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
* Copyright (c) 2011 Trusted Logic S.A.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#ifndef __S_VERSION_H__
#define __S_VERSION_H__
/*
* Usage: define S_VERSION_BUILD on the compiler's command line.
*
* Then set:
* - S_VERSION_OS
* - S_VERSION_PLATFORM
* - S_VERSION_MAIN
* - S_VERSION_ENG is optional
* - S_VERSION_PATCH is optional
* - S_VERSION_BUILD = 0 if S_VERSION_BUILD not defined or empty
*/
#define S_VERSION_OS "A" /* "A" for all Android */
#define S_VERSION_PLATFORM "B" /* "B" for Tegra3 */
/*
* This version number must be updated for each new release
*/
#define S_VERSION_MAIN "01.01"
/*
* If this is a patch or engineering version use the following
* defines to set the version number. Else set these values to 0.
*/
#define S_VERSION_ENG 0
#define S_VERSION_PATCH 0
#ifdef S_VERSION_BUILD
/* TRICK: detect if S_VERSION is defined but empty */
#if 0 == S_VERSION_BUILD-0
#undef S_VERSION_BUILD
#define S_VERSION_BUILD 0
#endif
#else
/* S_VERSION_BUILD is not defined */
#define S_VERSION_BUILD 0
#endif
#define __STRINGIFY(X) #X
#define __STRINGIFY2(X) __STRINGIFY(X)
#if S_VERSION_ENG != 0
#define _S_VERSION_ENG "e" __STRINGIFY2(S_VERSION_ENG)
#else
#define _S_VERSION_ENG ""
#endif
#if S_VERSION_PATCH != 0
#define _S_VERSION_PATCH "p" __STRINGIFY2(S_VERSION_PATCH)
#else
#define _S_VERSION_PATCH ""
#endif
#if !defined(NDEBUG) || defined(_DEBUG)
#define S_VERSION_VARIANT "D "
#else
#define S_VERSION_VARIANT " "
#endif
#define S_VERSION_STRING \
"TFN" \
S_VERSION_OS \
S_VERSION_PLATFORM \
S_VERSION_MAIN \
_S_VERSION_ENG \
_S_VERSION_PATCH \
"." __STRINGIFY2(S_VERSION_BUILD) " " \
S_VERSION_VARIANT
#endif /* __S_VERSION_H__ */
|