summaryrefslogtreecommitdiffstats
path: root/src/common/scm_rev.cpp.in
diff options
context:
space:
mode:
authorCaptV0rt3x <c.vamsi.krishna.96@gmail.com>2018-08-29 13:33:55 +0200
committerCaptV0rt3x <c.vamsi.krishna.96@gmail.com>2018-09-07 08:24:51 +0200
commite3af341d5b077436d2d40d94ade8bc457bc05eb8 (patch)
treed9024890c3176e80188d09ee6aafcea40d59eb20 /src/common/scm_rev.cpp.in
parentMerge pull request #1250 from lioncash/file-sys (diff)
downloadyuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.gz
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.bz2
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.lz
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.xz
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.tar.zst
yuzu-e3af341d5b077436d2d40d94ade8bc457bc05eb8.zip
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 @@
#define GIT_DESC "@GIT_DESC@"
#define BUILD_NAME "@REPO_NAME@"
#define BUILD_DATE "@BUILD_DATE@"
+#define BUILD_FULLNAME "@BUILD_FULLNAME@"
+#define BUILD_VERSION "@BUILD_VERSION@"
namespace Common {
@@ -17,6 +19,8 @@ const char g_scm_branch[] = GIT_BRANCH;
const char g_scm_desc[] = GIT_DESC;
const char g_build_name[] = BUILD_NAME;
const char g_build_date[] = BUILD_DATE;
+const char g_build_fullname[] = BUILD_FULLNAME;
+const char g_build_version[] = BUILD_VERSION;
} // namespace