mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
9a4a4a627b
Note to MSVC users: You can get the revision number if you run `make rev o=obj` with MinGW before you build. DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@4565 1a8010ca-5511-0410-912e-c29ae57300e0
14 lines
322 B
C
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
|