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