Keep doc/ directory around for Doxygen.
[bertos.git] / verstag.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 2001,2002,2003 by Bernardo Innocenti <bernie@codewiz.org>
6  * This file is part of DevLib - See devlib/README for information.
7  * -->
8  *
9  * \version $Id$
10  *
11  * \author Bernardo Innocenti <bernie@develer.com>
12  *
13  * \brief Define version strings
14  */
15 #ifndef VERSTAG_H
16 #define VERSTAG_H
17
18 #ifndef ARCH_CONFIG_H
19         #include "arch_config.h"
20 #endif
21
22 #define APP_NAME "Appname"
23 #define APP_DESCRIPTION "Long application name description"
24 #define APP_AUTHOR "Develer"
25 #define APP_COPYRIGHT "Copyright (C) 2004 by Develer (http://www.develer.com/)"
26
27 #if (ARCH & ARCH_FOO)
28         #define VERS_MAJOR 0
29         #define VERS_MINOR 1
30         #define VERS_REV   0
31         #define VERS_LETTER ""
32 #elif (ARCH & ARCH_BAR)
33         #define VERS_MAJOR 0
34         #define VERS_MINOR 1
35         #define VERS_REV   0
36         #define VERS_LETTER ""
37 #else
38         #error unknown architecture
39 #endif
40
41 #ifdef _DEBUG
42         #define VERS_DBG "D"
43 #else
44         #define VERS_DBG ""
45 #endif
46
47 #define _STRINGIZE(a) #a
48 /*! Build application version string (i.e.: "1.7.0") */
49 #define MAKE_VERS(maj,min,rev) _STRINGIZE(maj) "." _STRINGIZE(min) "." _STRINGIZE(rev) VERS_LETTER VERS_DBG
50 #define VERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
51
52 /*! Build application version string suitable for MS windows resource files (i.e.: "1, 7, 0, 1") */
53 #define MAKE_RCVERS(maj,min,rev,bld) _STRINGIZE(maj) ", " _STRINGIZE(min) ", " _STRINGIZE(rev) ", " _STRINGIZE(bld)
54 #define RCVERSION_TAG MAKE_VERS(VERS_MAJOR,VERS_MINOR,VERS_REV)
55
56 #endif /* VERSTAG_H */