source: tags/svn.1.5.4/TEMPLATES/arb_version.h

Last change on this file was 6385, checked in by westram, 16 years ago
  • removed trailing whitespace
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : arb_version.h                                     //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Coded by Ralf Westram (coder@reallysoft.de) in March 2007     //
7//   Institute of Microbiology (Technical University Munich)       //
8//   http://www.arb-home.de/                                       //
9//                                                                 //
10// =============================================================== //
11#ifndef ARB_VERSION_H
12#define ARB_VERSION_H
13
14// exports the following variables:
15//
16// ARB_BUILD_DATE            contains the date on which arb was build
17// ARB_BUILD_YEAR            contains the year in which arb was build
18// ARB_BUILD_HOST           contains the host on which arb was build
19// ARB_BUILD_USER           contains the user by whom  arb was build
20//
21// ARB_VERSION          arb version
22//
23// may define the following variable:
24//
25// SHOW_WHERE_BUILD     show build location/user (at arb_ntree command line and in mails sent from ARB)
26//                      has to be set for non-official builds!
27
28#include <arb_build.h>
29#include <svn_revision.h>
30
31#ifndef ARB_VERSION_MAJOR
32#error No version defined
33#endif
34
35# define ARB_VERSION ARB_VERSION_MAJOR "." ARB_VERSION_MINOR "-" ARB_VERSION_TAG "-" ARB_SVN_REVISION
36
37#else
38#error arb_version.h included twice
39#endif // ARB_VERSION_H
40
41
42
43
Note: See TracBrowser for help on using the repository browser.