mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
34 lines
898 B
C++
34 lines
898 B
C++
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
namespace AutoVersion{
|
|
|
|
//Date Version Types
|
|
static const char _DATE[] = "14";
|
|
static const char _MONTH[] = "06";
|
|
static const char _YEAR[] = "2011";
|
|
static const char _UBUNTU_VERSION_STYLE[] = "11.06";
|
|
|
|
//Software Status
|
|
static const char _STATUS[] = "Alpha";
|
|
static const char _STATUS_SHORT[] = "a";
|
|
|
|
//Standard Version Type
|
|
static const long _MAJOR = 0;
|
|
static const long _MINOR = 7;
|
|
static const long _BUILD = 5659;
|
|
static const long _REVISION = 14237;
|
|
|
|
//Miscellaneous Version Types
|
|
static const long _BUILDS_COUNT = 5892;
|
|
#define _RC_FILEVERSION 0,7,5659,14237
|
|
#define _RC_FILEVERSION_STRING "0, 7, 5659, 14237\0"
|
|
static const char _FULLVERSION_STRING[] = "0.7.5659.14237";
|
|
|
|
//These values are to keep track of your versioning state, don't modify them.
|
|
static const long _BUILD_HISTORY = 0;
|
|
|
|
|
|
}
|
|
#endif //VERSION_H
|