summaryrefslogtreecommitdiff
path: root/src/common/scm_rev.cpp.in
diff options
context:
space:
mode:
authorGravatar CaptV0rt3x2018-08-29 17:03:55 +0530
committerGravatar CaptV0rt3x2018-09-07 11:54:51 +0530
commite3af341d5b077436d2d40d94ade8bc457bc05eb8 (patch)
treed9024890c3176e80188d09ee6aafcea40d59eb20 /src/common/scm_rev.cpp.in
parentMerge pull request #1250 from lioncash/file-sys (diff)
downloadyuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.gz
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.xz
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.zip
Better Title Bar Display
Diffstat (limited to 'src/common/scm_rev.cpp.in')
-rw-r--r--src/common/scm_rev.cpp.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/scm_rev.cpp.in b/src/common/scm_rev.cpp.in
index 4083095d5..2b1727769 100644
--- a/src/common/scm_rev.cpp.in
+++ b/src/common/scm_rev.cpp.in
@@ -9,6 +9,8 @@
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#define BUILD_DATE "@BUILD_DATE@"
12#define BUILD_FULLNAME "@BUILD_FULLNAME@"
13#define BUILD_VERSION "@BUILD_VERSION@"
12 14
13namespace Common { 15namespace Common {
14 16
@@ -17,6 +19,8 @@ const char g_scm_branch[] = GIT_BRANCH;
17const char g_scm_desc[] = GIT_DESC; 19const char g_scm_desc[] = GIT_DESC;
18const char g_build_name[] = BUILD_NAME; 20const char g_build_name[] = BUILD_NAME;
19const char g_build_date[] = BUILD_DATE; 21const char g_build_date[] = BUILD_DATE;
22const char g_build_fullname[] = BUILD_FULLNAME;
23const char g_build_version[] = BUILD_VERSION;
20 24
21} // namespace 25} // namespace
22 26