2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00
yuzu/src/common/version.cpp

46 lines
935 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "common/common.h"
#include "common/scm_rev.h"
#ifdef _DEBUG
2014-04-01 23:20:08 +01:00
#define BUILD_TYPE_STR "Debug "
#elif defined DEBUGFAST
2014-04-01 23:20:08 +01:00
#define BUILD_TYPE_STR "DebugFast "
#else
2014-04-01 23:20:08 +01:00
#define BUILD_TYPE_STR ""
#endif
const char *g_scm_rev_str =
#if !SCM_IS_MASTER
2014-04-01 23:20:08 +01:00
"[" SCM_BRANCH_STR "] "
#endif
#ifdef __INTEL_COMPILER
2014-04-01 23:20:08 +01:00
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
#else
2014-04-01 23:20:08 +01:00
BUILD_TYPE_STR SCM_DESC_STR;
#endif
#ifdef _M_X64
#define NP_ARCH "x64"
#else
#ifdef _M_ARM
#define NP_ARCH "ARM"
2014-04-01 23:20:08 +01:00
#else
#define NP_ARCH "x86"
#endif
#endif
#ifdef _WIN32
const char *g_netplay_citra_ver = SCM_DESC_STR " W" NP_ARCH;
#elif __APPLE__
const char *g_netplay_citra_ver = SCM_DESC_STR " M" NP_ARCH;
#else
const char *g_netplay_citra_ver = SCM_DESC_STR " L" NP_ARCH;
#endif
const char *scm_rev_git_str = SCM_REV_STR;