]> icculus.org git repositories - divverent/darkplaces.git/blob - builddate.c
r_font_hinting cvar makes more sense: 0 no hinting, 1 force autohinting, 2 fullhintin...
[divverent/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 ;