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

18 lines
448 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 git_str(a) str(a)
2023-09-22 01:56:10 +02:00
2023-11-04 05:25:05 +01:00
#define VERSION_MAJOR 6
2024-08-20 12:14:20 +02:00
#define VERSION_MINOR 8
2023-09-22 01:56:10 +02:00
#define VERSION_BUILD 0
2024-08-31 09:36:51 +02:00
#define VERSION_REVISION 3
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