2023-09-22 01:56:10 +02:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
#define str(s) #s
|
|
|
|
#define ver_str(a,b,c,d) str(a) "." str(b) "." str(c) "." str(d)
|
|
|
|
|
2024-11-02 01:35:26 +01:00
|
|
|
#define VERSION_MAJOR 7
|
2024-12-28 08:37:44 +01:00
|
|
|
#define VERSION_MINOR 1
|
2023-09-22 01:56:10 +02:00
|
|
|
#define VERSION_BUILD 0
|
2024-12-29 00:30:04 +01:00
|
|
|
#define VERSION_REVISION 1
|
2023-09-22 01:56:10 +02:00
|
|
|
|
|
|
|
#define VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION
|
|
|
|
#define VERSION_STRING ver_str(VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD, VERSION_REVISION)
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|