]> Git Repo - VerusCoin.git/blob - src/clientversion.h
Merge pull request #4381
[VerusCoin.git] / src / clientversion.h
1 #ifndef CLIENTVERSION_H
2 #define CLIENTVERSION_H
3
4 #if defined(HAVE_CONFIG_H)
5 #include "bitcoin-config.h"
6 #else
7 //
8 // client versioning and copyright year
9 //
10
11 // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
12 #define CLIENT_VERSION_MAJOR       0
13 #define CLIENT_VERSION_MINOR       9
14 #define CLIENT_VERSION_REVISION    99
15 #define CLIENT_VERSION_BUILD       0
16
17 // Set to true for release, false for prerelease or test build
18 #define CLIENT_VERSION_IS_RELEASE  false
19
20 // Copyright year (2009-this)
21 // Todo: update this when changing our copyright comments in the source
22 #define COPYRIGHT_YEAR 2014
23
24 #endif //HAVE_CONFIG_H
25
26 // Converts the parameter X to a string after macro replacement on X has been performed.
27 // Don't merge these into one macro!
28 #define STRINGIZE(X) DO_STRINGIZE(X)
29 #define DO_STRINGIZE(X) #X
30
31 #endif // CLIENTVERSION_H
This page took 0.025143 seconds and 4 git commands to generate.