-
Notifications
You must be signed in to change notification settings - Fork 10
/
BuildInfo.h
31 lines (26 loc) · 1.29 KB
/
BuildInfo.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
30
31
// BuildInfo.h
//
#define BUILDINFO_COMPANY "RIGamortis Software"
#define BUILDINFO_YEAR "2024"
#define BUILDINFO_COPYRIGHT "© Maetrim"
#define BUILDINFO_PRODUCT "DDOBuilder"
// Version number changes to the appropriate level(s) should be made here
// ----------------------------------------------------------------------
#define BUILDINFO_VERSION_MAJOR 2
#define BUILDINFO_VERSION_MINOR 0
#define BUILDINFO_VERSION_MODIF 0
#define BUILDINFO_VERSION_BUILD 46
// Macro used to make combination strings automatically from the above
// -------------------------------------------------------------------
#define BLDSTR(X) DO_BLDSTR(X)
#define DO_BLDSTR(X) #X
// The X.X format is the headline value and is used in various places
// ------------------------------------------------------------------
#define BUILDINFO_VERSION_VV \
BLDSTR(BUILDINFO_VERSION_MAJOR) "." BLDSTR(BUILDINFO_VERSION_MINOR)
// The X.X.X.X format is used in a few result doc tags, and the winapp version
// ---------------------------------------------------------------------------
#define BUILDINFO_VERSION BLDSTR(BUILDINFO_VERSION_MAJOR) "." \
BLDSTR(BUILDINFO_VERSION_MINOR) "." \
BLDSTR(BUILDINFO_VERSION_MODIF) "." \
BLDSTR(BUILDINFO_VERSION_BUILD)