diff options
| author | 2017-08-01 19:54:24 -0400 | |
|---|---|---|
| committer | 2017-08-03 20:10:37 -0400 | |
| commit | f44a1e0291ab64ea9f34a9263432f30d18f3e98d (patch) | |
| tree | 985c56c99da9edd301e96bf27551de33a805a629 /src/common/scm_rev.cpp.in | |
| parent | core: Expose AppLoader as a public interface. (diff) | |
| download | yuzu-f44a1e0291ab64ea9f34a9263432f30d18f3e98d.tar.gz yuzu-f44a1e0291ab64ea9f34a9263432f30d18f3e98d.tar.xz yuzu-f44a1e0291ab64ea9f34a9263432f30d18f3e98d.zip | |
common: Add build timestamp to scm_rev.
Diffstat (limited to 'src/common/scm_rev.cpp.in')
| -rw-r--r-- | src/common/scm_rev.cpp.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/scm_rev.cpp.in b/src/common/scm_rev.cpp.in index 0080db5d5..4083095d5 100644 --- a/src/common/scm_rev.cpp.in +++ b/src/common/scm_rev.cpp.in | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #define GIT_BRANCH "@GIT_BRANCH@" | 8 | #define GIT_BRANCH "@GIT_BRANCH@" |
| 9 | #define GIT_DESC "@GIT_DESC@" | 9 | #define GIT_DESC "@GIT_DESC@" |
| 10 | #define BUILD_NAME "@REPO_NAME@" | 10 | #define BUILD_NAME "@REPO_NAME@" |
| 11 | #define BUILD_DATE "@BUILD_DATE@" | ||
| 11 | 12 | ||
| 12 | namespace Common { | 13 | namespace Common { |
| 13 | 14 | ||
| @@ -15,6 +16,7 @@ const char g_scm_rev[] = GIT_REV; | |||
| 15 | const char g_scm_branch[] = GIT_BRANCH; | 16 | const char g_scm_branch[] = GIT_BRANCH; |
| 16 | const char g_scm_desc[] = GIT_DESC; | 17 | const char g_scm_desc[] = GIT_DESC; |
| 17 | const char g_build_name[] = BUILD_NAME; | 18 | const char g_build_name[] = BUILD_NAME; |
| 19 | const char g_build_date[] = BUILD_DATE; | ||
| 18 | 20 | ||
| 19 | } // namespace | 21 | } // namespace |
| 20 | 22 | ||