quakequest/Projects/Android/jni/builddate.c

13 lines
253 B
C
Raw Normal View History

2019-05-30 05:57:57 +00:00
#define STRINGIFY2(arg) #arg
#define STRINGIFY(arg) STRINGIFY2(arg)
extern const char *buildstring;
const char *buildstring = __TIME__ " " __DATE__
#ifdef SVNREVISION
" " STRINGIFY(SVNREVISION)
#endif
#ifdef BUILDTYPE
" " STRINGIFY(BUILDTYPE)
#endif
;