Rename app dir to examples.
[bertos.git] / examples / triface / 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, 2006 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2000 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 #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 "Triface"
49 #define APP_DESCRIPTION "Trinity Interface Board"
50 #define APP_AUTHOR "Develer"
51 #define APP_COPYRIGHT "Copyright 2006, 2007, 2008, Develer (http://www.develer.com/)"
52
53 #define VERS_MAJOR 2
54 #define VERS_MINOR 1
55 #define VERS_REV   0
56 #define VERS_LETTER ""
57
58 /**
59  * If _SNAPSHOT is defined, \c VERS_TAG contains the build date
60  * date instead of a numeric version string.
61  */
62 //#define _SNAPSHOT
63
64 #ifdef _DEBUG
65         #define VERS_DBG "D"
66 #else
67         #define VERS_DBG ""
68 #endif
69
70 #define __STRINGIZE(x) #x
71 #define _STRINGIZE(x) __STRINGIZE(x)
72
73 /** Build application version string (i.e.: "1.7.0") */
74 #define MAKE_VERS(maj,min,rev) _STRINGIZE(maj) "." _STRINGIZE(min) "." _STRINGIZE(rev) VERS_LETTER VERS_DBG
75 #ifdef _SNAPSHOT
76         #define VERS_TAG "snapshot" " " __DATE__ " " __TIME__ " " VERS_LETTER " " VERS_DBG
77 #else
78         #define VERS_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
79 #endif
80
81 /** Build application version string suitable for MS windows resource files (i.e.: "1, 7, 0, 1") */
82 #define MAKE_RCVERS(maj,min,rev,bld) _STRINGIZE(maj) ", " _STRINGIZE(min) ", " _STRINGIZE(rev) ", " _STRINGIZE(bld)
83 #define RCVERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
84
85 /** The revision string (contains VERS_TAG) */
86 extern const char vers_tag[];
87
88 /** Sequential build number (contains VERS_BUILD) */
89 extern const int vers_build_nr;
90 //extern const char vers_build_str[];
91
92 /** Hostname of the machine used to build this binary (contains VERS_HOST) */
93 extern const char vers_host[];
94
95 #endif /* BERTOS_VERSTAG_H */