1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00
cnc-ddraw/inc/version.h

17 lines
422 B
C
Raw Permalink Normal View History

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)
#define VERSION_MAJOR 5
#define VERSION_MINOR 7
#define VERSION_BUILD 0
2023-09-26 07:18:41 +02:00
#define VERSION_REVISION 7
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