]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - builddate.c
b7b53519ae65d2eecf9a155d4b73a1415fcd6770
[xonotic/darkplaces.git] / builddate.c
1 #define STRINGIFY2(arg) #arg
2 #define STRINGIFY(arg) STRINGIFY2(arg)
3
4 const char *buildstring = __TIME__ " " __DATE__
5 #ifdef SVNREVISION
6 " " STRINGIFY(SVNREVISION)
7 #endif
8 #ifdef BUILDTYPE
9 " " STRINGIFY(BUILDTYPE)
10 #endif
11 ;