raze-gles/source/build/src/rev.cpp
hendricks266 1cc9d13ccf The great repository rearrangement of 2017.
Files moved but not modified. Changes to follow in a subsequent commit.

You down with CPP?

git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
2017-02-01 10:01:11 +00:00

14 lines
322 B
C++

// This file's main purpose is to be recompiled unconditionally so the timestamp gets updated, even for a partial recompile.
#if !defined REV
# define REV "r(?)"
#endif
#ifdef __cplusplus
extern "C" {
#endif
const char* s_buildRev = REV;
const char* s_buildTimestamp = __DATE__ " " __TIME__;
#ifdef __cplusplus
}
#endif