diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-07 12:05:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 12:05:32 -0400 |
commit | c08c5d346ac8bf0c8571ec68772851a76e27e7f1 (patch) | |
tree | bad988c1423f1d92ffb907d98bd8d5666e93dbc9 /src/common/scm_rev.cpp.in | |
parent | a164b413fa479ec1ab0322044ca5ce6c16708e3a (diff) | |
parent | 9382414b2036751f98d8e65a25f00517d9f46436 (diff) |
Merge pull request #1201 from CaptV0rt3x/titlebar
Port #3804 from Citra - Better Title Bar Display
Diffstat (limited to 'src/common/scm_rev.cpp.in')
-rw-r--r-- | src/common/scm_rev.cpp.in | 4 |
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 |