1 #define STRINGIFY(x) #x
2 #define TOSTRING(x) STRINGIFY(x)
3
4 #define VER_MAJOR 1
5 #define VER_MINOR 1
6 #define VER_PATCH 6
7 #define VER_FIX _beta
8
9 #ifdef VER_FIX
10 #define VERSION TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_PATCH)TOSTRING(VER_FIX)
11 #else
12 #define VERSION TOSTRING(VER_MAJOR) "." TOSTRING(VER_MINOR) "." TOSTRING(VER_PATCH)
13 #endif
14
15