Discontinue versioning

As stdex has been made static library it really makes no sense to
continue labeling versions.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-02-11 15:10:12 +01:00
parent da7ca1c368
commit eeff73ce37

View File

@ -28,27 +28,3 @@
/// Classes without virtual table /// Classes without virtual table
/// ///
#define STDEX_NOVTABLE __declspec(novtable) #define STDEX_NOVTABLE __declspec(novtable)
//
// Product version as a single DWORD
// Note: Used for version comparison within C/C++ code.
//
#define STDEX_VERSION 0x01000100
//
// Product version by components
// Note: Resource Compiler has limited preprocessing capability,
// thus we need to specify major, minor and other version components
// separately.
//
#define STDEX_VERSION_MAJ 1
#define STDEX_VERSION_MIN 0
#define STDEX_VERSION_REV 1
#define STDEX_VERSION_BUILD 0
//
// Human readable product version and build year for UI
//
#define STDEX_VERSION_STR "1.0.1"
#define STDEX_BUILD_YEAR_STR "2018"