all version info now linked to Version.h .

This commit is contained in:
Zero Fanker 2024-06-20 22:41:39 -04:00
parent 0fac1ef7b3
commit fdc7e066a6
4 changed files with 24 additions and 8 deletions

View file

@ -2,4 +2,15 @@
#define PRODUCT_VERSION_MAJOR 2
#define PRODUCT_VERSION_MINOR 1
#define PRODUCT_VERSION_REVISION 0
#define PRODUCT_VERSION_REVISION 0
#if !defined(_str)
#define _str(x) #x
#endif
#define str(x) _str(x)
#define PRODUCT_VERSION_STRING str(PRODUCT_VERSION_MAJOR) \
"." str(PRODUCT_VERSION_MINOR) \
"." str(PRODUCT_VERSION_REVISION)