29 lines
867 B
C++
29 lines
867 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#define GIT_REV "@GIT_REV@"
|
|
#define GIT_BRANCH "@GIT_BRANCH@"
|
|
#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@"
|
|
#define SHADER_CACHE_VERSION "@SHADER_CACHE_VERSION@"
|
|
|
|
namespace Common {
|
|
|
|
const char g_scm_rev[] = GIT_REV;
|
|
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;
|
|
const char g_shader_cache_version[] = SHADER_CACHE_VERSION;
|
|
|
|
} // namespace
|
|
|