mirror of
https://github.com/DrBeef/QuakeQuest.git
synced 2024-11-26 22:12:02 +00:00
13 lines
253 B
C
13 lines
253 B
C
|
#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
|
||
|
;
|