Add config files for keyboard and graphics.
[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 #elif ARCH & ARCH_NIGHTTEST
66         #define VERS_MAJOR 0
67         #define VERS_MINOR 1
68         #define VERS_REV   0
69         #define VERS_LETTER ""
70 #else
71         #error unknown architecture
72 #endif
73
74 /**
75  * If _SNAPSHOT is defined, \c VERS_TAG contains the build date
76  * date instead of a numeric version string.
77  */
78 #define _SNAPSHOT
79
80 #ifdef _DEBUG
81         #define VERS_DBG "D"
82 #else
83         #define VERS_DBG ""
84 #endif
85
86 #define __STRINGIZE(x) #x
87 #define _STRINGIZE(x) __STRINGIZE(x)
88
89 /** Build application version string (i.e.: "1.7.0") */
90 #define MAKE_VERS(maj,min,rev) _STRINGIZE(maj) "." _STRINGIZE(min) "." _STRINGIZE(rev) VERS_LETTER VERS_DBG
91 #ifdef _SNAPSHOT
92         #define VERS_TAG "snapshot" " " __DATE__ " " __TIME__ " " VERS_LETTER " " VERS_DBG
93 #else
94         #define VERS_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
95 #endif
96
97 /** Build application version string suitable for MS windows resource files (i.e.: "1, 7, 0, 1") */
98 #define MAKE_RCVERS(maj,min,rev,bld) _STRINGIZE(maj) ", " _STRINGIZE(min) ", " _STRINGIZE(rev) ", " _STRINGIZE(bld)
99 #define RCVERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
100
101 /** The revision string (contains VERS_TAG) */
102 extern const char vers_tag[];
103
104 /** Sequential build number (contains VERS_BUILD) */
105 extern const int vers_build_nr;
106 //extern const char vers_build_str[];
107
108 /** Hostname of the machine used to build this binary (contains VERS_HOST) */
109 extern const char vers_host[];
110
111 #endif /* BERTOS_VERSTAG_H */