1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0022698: Add OCC_VERSION_DEVELOPMENT definition in Standard_Version.hxx

New macros added to Standard_Version.hxx to identify OCC version more precisely:

- OCC_VERSION_DEVELOPMENT is to be defined as string in any version different from official release, to indicate that it is modified

- OCC_VERSION_COMPLETE is string form of the complete version number major.minor.maintenance

- OCC_VERSION_STRING_EXT is extended string for of the version equal to OCC_VERSION_COMPLETE and adding OCC_VERSION_DEVELOPMENT as suffix if it is defined

Version promoted to 6.5.3.beta1
This commit is contained in:
abv 2012-04-02 15:00:32 +04:00
parent 298f9ad709
commit a0b4c5eac5

View File

@ -24,9 +24,11 @@
// OCC_VERSION_MAJOR : (integer) number identifying major version
// OCC_VERSION_MINOR : (integer) number identifying minor version
// OCC_VERSION_MAINTENANCE : (integer) number identifying maintenance version
// OCC_VERSION_DEVELOPMENT : (no value) if defined, identify development version.
// OCC_VERSION_DEVELOPMENT : (string) if defined, indicates development or modified version
// OCC_VERSION : (real) complete number (major.minor)
// OCC_VERSION_STRING : (string) complete number ("major.minor")
// OCC_VERSION_STRING : (string) short version number ("major.minor")
// OCC_VERSION_COMPLETE : (string) complete version number ("major.minor.maintenance")
// OCC_VERSION_STRING_EXT : (string) extended version ("major.minor.maintenance.development")
// OCC_VERSION_HEX : (hex) complete number as hex, two positions per each of major, minor, and patch number
//
//======================================================================*/
@ -37,14 +39,28 @@
// Primary definitions
#define OCC_VERSION_MAJOR 6
#define OCC_VERSION_MINOR 5
#define OCC_VERSION_MAINTENANCE 2
#define OCC_VERSION_DEVELOPMENT // This line must be commented in any final version (release)
#define OCC_VERSION_MAINTENANCE 3
// Derived: version as real and string (major.minor)
#define OCC_VERSION 6.5
#define OCC_VERSION_STRING "6.5"
//! This macro must be commented in official release, and set to non-empty
//! string in other situations, to identify specifics of the version, e.g.:
//! - "dev" for official (certified) version (master branch) between releases
//! - "beta..." or "rc..." for beta releases or release candidates
//! - "project..." for version containing project-specific fixes
#define OCC_VERSION_DEVELOPMENT "beta1"
// Derived: version as hex (0x0'major'0'minor'0'maintenance')
// Derived (manually): version as real and string (major.minor)
#define OCC_VERSION 6.5
#define OCC_VERSION_STRING "6.5"
#define OCC_VERSION_COMPLETE "6.5.3"
//! Derived: extended version as string ("major.minor.maintenance.dev")
#ifdef OCC_VERSION_DEVELOPMENT
#define OCC_VERSION_STRING_EXT OCC_VERSION_COMPLETE "." OCC_VERSION_DEVELOPMENT
#else
#define OCC_VERSION_STRING_EXT OCC_VERSION_COMPLETE
#endif
// Derived: complete version as hex (0x0'major'0'minor'0'maintenance')
#define OCC_VERSION_HEX (OCC_VERSION_MAJOR << 16 | OCC_VERSION_MINOR << 8 | OCC_VERSION_MAINTENANCE)
#endif /* _Standard_Version_HeaderFile */