]> icculus.org git repositories - divverent/darkplaces.git/blob - builddate.c
check if a model's textures have deforms that need normals/tangents at load-time...
[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 ;