Update preset.
[bertos.git] / bertos / verstag.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2003, 2004, 2005, 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2001, 2002, 2003 by Bernie Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  *
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  *
37  * \brief Declare application version strings
38  */
39
40
41 #ifndef BERTOS_VERSTAG_H
42 #define BERTOS_VERSTAG_H
43
44 #ifndef CFG_ARCH_CONFIG_H
45         #include "cfg/cfg_arch.h"
46 #endif
47
48 #define APP_NAME "Appname"
49 #define APP_DESCRIPTION "Long application name description"
50 #define APP_AUTHOR "Develer"
51 #define APP_COPYRIGHT "Copyright 2009 Develer (http://www.develer.com/)"
52
53
54 #if ARCH & ARCH_DEFAULT
55         #define VERS_MAJOR 0
56         #define VERS_MINOR 1
57         #define VERS_REV   0
58         #define VERS_LETTER ""
59 #elif ARCH & ARCH_NIGHTTEST
60         #define VERS_MAJOR 0
61         #define VERS_MINOR 1
62         #define VERS_REV   0
63         #define VERS_LETTER ""
64 #else
65         #error unknown architecture
66 #endif
67
68 /**
69  * If _SNAPSHOT is defined, \c VERS_TAG contains the build date
70  * date instead of a numeric version string.
71  */
72 #define _SNAPSHOT
73
74 #ifdef _DEBUG
75         #define VERS_DBG "D"
76 #else
77         #define VERS_DBG ""
78 #endif
79
80 #define __STRINGIZE(x) #x
81 #define _STRINGIZE(x) __STRINGIZE(x)
82
83 /** Build application version string (i.e.: "1.7.0") */
84 #define MAKE_VERS(maj,min,rev) _STRINGIZE(maj) "." _STRINGIZE(min) "." _STRINGIZE(rev) VERS_LETTER VERS_DBG
85 #ifdef _SNAPSHOT
86         #define VERS_TAG "snapshot" " " __DATE__ " " __TIME__ " " VERS_LETTER " " VERS_DBG
87 #else
88         #define VERS_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
89 #endif
90
91 /** Build application version string suitable for MS windows resource files (i.e.: "1, 7, 0, 1") */
92 #define MAKE_RCVERS(maj,min,rev,bld) _STRINGIZE(maj) ", " _STRINGIZE(min) ", " _STRINGIZE(rev) ", " _STRINGIZE(bld)
93 #define RCVERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
94
95 /** The revision string (contains VERS_TAG) */
96 extern const char vers_tag[];
97
98 /** Sequential build number (contains VERS_BUILD) */
99 extern const int vers_build_nr;
100 //extern const char vers_build_str[];
101
102 /** Hostname of the machine used to build this binary (contains VERS_HOST) */
103 extern const char vers_host[];
104
105 #endif /* BERTOS_VERSTAG_H */