diff options
| author | Jules Blok <jules.blok@gmail.com> | 2015-06-10 00:00:12 +0200 |
|---|---|---|
| committer | Jules Blok <jules.blok@gmail.com> | 2015-06-10 00:00:12 +0200 |
| commit | 7dfced21a2e5aac7195e0e1ad76468e30306766b (patch) | |
| tree | bd671b639d3d911460b767caabad8fc8a759a6bf /Source/Core/Common/Version.cpp | |
| parent | c25be031fc1031d795157d8344b87b7841145197 (diff) | |
| parent | 7b0a65e295c784f9d573f2ef52d4e2a7b9bb2889 (diff) | |
Merge branch 'master' into stable
Diffstat (limited to 'Source/Core/Common/Version.cpp')
| -rw-r--r-- | Source/Core/Common/Version.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp new file mode 100644 index 0000000000..2ac01cd22e --- /dev/null +++ b/Source/Core/Common/Version.cpp @@ -0,0 +1,38 @@ +// Copyright 2008 Dolphin Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + +#include "scmrev.h" +#include "Common/Common.h" + +#ifdef _DEBUG + #define BUILD_TYPE_STR "Debug " +#elif defined DEBUGFAST + #define BUILD_TYPE_STR "DebugFast " +#else + #define BUILD_TYPE_STR "" +#endif + +const char *scm_rev_str = "Dolphin " +#if !SCM_IS_MASTER + "[" SCM_BRANCH_STR "] " +#endif + +#ifdef __INTEL_COMPILER + BUILD_TYPE_STR SCM_DESC_STR "-ICC"; +#else + BUILD_TYPE_STR SCM_DESC_STR; +#endif + +#ifdef _WIN32 +const char *netplay_dolphin_ver = SCM_DESC_STR " Win"; +#elif __APPLE__ +const char *netplay_dolphin_ver = SCM_DESC_STR " Mac"; +#else +const char *netplay_dolphin_ver = SCM_DESC_STR " Lin"; +#endif + +const char *scm_rev_git_str = SCM_REV_STR; + +const char *scm_desc_str = SCM_DESC_STR; +const char *scm_branch_str = SCM_BRANCH_STR; |
