]> git.xonotic.org Git - xonotic/darkplaces.git/blob - builddate.c
physics: fix and refactor unsticking
[xonotic/darkplaces.git] / builddate.c
1 #define STRINGIFY2(arg) #arg
2 #define STRINGIFY(arg) STRINGIFY2(arg)
3
4 extern const char *buildstring;
5 const char *buildstring =
6 #ifdef VCREVISION
7 STRINGIFY(VCREVISION)
8 #else
9 "-"
10 #endif
11 #ifndef NO_BUILD_TIMESTAMPS
12 //" " __TIME__
13 " " __DATE__
14 #endif
15 #ifdef BUILDTYPE
16 " " STRINGIFY(BUILDTYPE)
17 #endif
18 ;