mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-22 09:57:21 +01:00
14 lines
298 B
C++
14 lines
298 B
C++
|
#include "vcs_info.h"
|
||
|
|
||
|
#ifdef XASH_BUILD_COMMIT
|
||
|
const char *g_VCSInfo_Commit = XASH_BUILD_COMMIT;
|
||
|
#else
|
||
|
const char *g_VCSInfo_Commit = "unknown-commit";
|
||
|
#endif
|
||
|
|
||
|
#ifdef XASH_BUILD_BRANCH
|
||
|
const char *g_VCSInfo_Branch = XASH_BUILD_BRANCH;
|
||
|
#else
|
||
|
const char *g_VCSInfo_Branch = "unknown-commit";
|
||
|
#endif
|