aboutsummaryrefslogtreecommitdiff
path: root/externals/gridflow/bundled/Base/GemVersion.h
blob: 926407f00613000600239817ca33e08aa2bd3171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef GEM_VERSION_H
#define GEM_VERSION_H

#define GEM_VERSION_MAJOR 0
#define GEM_VERSION_MINOR 91
#define GEM_VERSION_BUGFIX 0
#define GEM_VERSION_CODENAME "'tigital'"


#define STRINGIFY2(x) #x
#define STRINGIFY(x) STRINGIFY2(x)

static const char *GEM_VERSION = \
  "" STRINGIFY(GEM_VERSION_MAJOR)  \
  "." STRINGIFY(GEM_VERSION_MINOR) \
  "." STRINGIFY(GEM_VERSION_BUGFIX) \
  " " GEM_VERSION_CODENAME;


static const char *GEM_MAINTAINER = "IOhannes m zmoelnig";

static const char *GEM_AUTHORS[] = {
  "Chris Clepper",
  "James Tittle",
  "IOhannes m zmoelnig"};

static const char* GEM_OTHERAUTHORS =
  "Guenter Geiger, Daniel Heckenberg, Cyrille Henry, et al.";
#endif