32 lines
695 B
C
32 lines
695 B
C
#define MAJOR 4
|
|
#define MINOR 0
|
|
#define PATCH 22
|
|
|
|
// string
|
|
#define VN__(a,b,c) #a"."#b"."#c
|
|
#define VN_(a,b,c) VN__(a,b,c)
|
|
#define VERSION_NUMBER VN_(MAJOR,MINOR,PATCH)
|
|
#define VERSION_STRING "alpha " VERSION_NUMBER
|
|
|
|
#if defined(FRED_SUPER)
|
|
#define VERSION_TYPE " super!"
|
|
#else
|
|
#define VERSION_TYPE
|
|
#endif
|
|
|
|
#define VERSION VERSION_STRING VERSION_TYPE
|
|
|
|
// long string
|
|
#define L_VN__(a,b,c) L#a L"." L#b L"." L#c
|
|
#define L_VN_(a,b,c) L_VN__(a,b,c)
|
|
#define L_VERSION_NUMBER L_VN_(MAJOR,MINOR,PATCH)
|
|
#define L_VERSION_STRING L"alpha " L_VERSION_NUMBER
|
|
|
|
#if defined(FRED_SUPER)
|
|
#define L_VERSION_TYPE L" super!"
|
|
#else
|
|
#define L_VERSION_TYPE
|
|
#endif
|
|
|
|
#define L_VERSION L_VERSION_STRING L_VERSION_TYPE
|