OpenCurves  0.9
ocurvesver.h
1 //
2 // author Kazys Stepanas
3 //
4 // Copyright (c) CSIRO 2015
5 //
6 #ifndef OCURVESVER_H
7 #define OCURVESVER_H
8 
9 #define OCURVES_MAJOR_VER 0
10 #define OCURVES_MINOR_VER 9
11 #define OCURVES_PATCH_VER 0
12 
13 // Release candidate or beta display string.
14 //#define OCURVES_BETA_RC "RC"
15 //#define OCURVES_BETA_RC "Beta"
16 // Beta or release candidate version number. Only displayed if OCURVES_BETA_RC is defined.
17 #define OCURVES_BETA_RC_VER 1
18 
19 // Build number should be incremented every for every stable build in the master branch.
20 #define OCURVES_BUILD_NUMBER 63
21 
22 // Show the OCURVES_BUILD_NUMBER in the UI?
23 // This should be disabled for full releases including beta and RC releases, but enabled
24 // for all other builds in the master branch.
25 #define OCURVES_DISPLAY_BUILD 1
26 
27 #endif // OCURVESVER_H