Rename myself
[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  * \version $Id$
35  *
36  * \author Bernie Innocenti <bernie@codewiz.org>
37  *
38  * \brief Declare application version strings
39  */
40
41
42 #ifndef BERTOS_VERSTAG_H
43 #define BERTOS_VERSTAG_H
44
45 #ifndef CFG_ARCH_CONFIG_H
46         #include "cfg/cfg_arch.h"
47 #endif
48
49 #define APP_NAME "Appname"
50 #define APP_DESCRIPTION "Long application name description"
51 #define APP_AUTHOR "Develer"
52 #define APP_COPYRIGHT "Copyright 2006 Develer (http://www.develer.com/)"
53
54
55 #if ARCH & ARCH_FOO
56         #define VERS_MAJOR 0
57         #define VERS_MINOR 1
58         #define VERS_REV   0
59         #define VERS_LETTER ""
60 #elif ARCH & ARCH_BAR
61         #define VERS_MAJOR 0
62         #define VERS_MINOR 1
63         #define VERS_REV   0
64         #define VERS_LETTER ""
65 #else
66         #error unknown architecture
67 #endif
68
69 /**
70  * If _SNAPSHOT is defined, \c VERS_TAG contains the build date
71  * date instead of a numeric version string.
72  */
73 #define _SNAPSHOT
74
75 #ifdef _DEBUG
76         #define VERS_DBG "D"
77 #else
78         #define VERS_DBG ""
79 #endif
80
81 #define __STRINGIZE(x) #x
82 #define _STRINGIZE(x) __STRINGIZE(x)
83
84 /** Build application version string (i.e.: "1.7.0") */
85 #define MAKE_VERS(maj,min,rev) _STRINGIZE(maj) "." _STRINGIZE(min) "." _STRINGIZE(rev) VERS_LETTER VERS_DBG
86 #ifdef _SNAPSHOT
87         #define VERS_TAG "snapshot" " " __DATE__ " " __TIME__ " " VERS_LETTER " " VERS_DBG
88 #else
89         #define VERS_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
90 #endif
91
92 /** Build application version string suitable for MS windows resource files (i.e.: "1, 7, 0, 1") */
93 #define MAKE_RCVERS(maj,min,rev,bld) _STRINGIZE(maj) ", " _STRINGIZE(min) ", " _STRINGIZE(rev) ", " _STRINGIZE(bld)
94 #define RCVERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
95
96 /** The revision string (contains VERS_TAG) */
97 extern const char vers_tag[];
98
99 /** Sequential build number (contains VERS_BUILD) */
100 extern const int vers_build_nr;
101 //extern const char vers_build_str[];
102
103 /** Hostname of the machine used to build this binary (contains VERS_HOST) */
104 extern const char vers_host[];
105
106 #endif /* BERTOS_VERSTAG_H */