forked from ennorehling/csmapfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.h
30 lines (21 loc) · 1.02 KB
/
version.h
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
#ifndef CSMAP_VERSION_H_
#define CSMAP_VERSION_H_
#define MACROTOSTR(STR) MACROTOSTRINGx(STR)
#define MACROTOSTRINGx(STR) #STR
// subversion revision data
#define CSMAP_SVN_REV 138
#define CSMAP_SVN_REVSTR "138"
// global application title string
#define CSMAP_APP_TITLE "Coast'n'Sea Mapper"
// current application version and subversion revision
#define CSMAP_APP_VERSION 0, 6, 4, CSMAP_SVN_REV
#define CSMAP_APP_REVISION "rev " CSMAP_SVN_REVSTR
// application version string
#define CSMAP_APP_VERSIONSTR "v0.6 " CSMAP_APP_REVISION
// application title with full version string
#define CSMAP_APP_TITLE_VERSION CSMAP_APP_TITLE " " CSMAP_APP_VERSIONSTR
// used as legal copyright (version.rc) and command line welcome text (main.cpp)
#define CSMAP_APP_COPYRIGHT "Copyright (c) 2004-2010 Thomas J. Gritzan\nCopyright (c) 2020 Enno Rehling"
// used as company name (version.rc) and in the About Box (csmap.cpp)
#define CSMAP_APP_URL "https://github.com/ennorehling/csmapfx"
#endif //CSMAP_VERSION_H_