1
0
Fork 0
mirror of https://github.com/zhaobot/yuzu.git synced 2025-01-22 21:00:32 -03:00
yuzu-tx-update/src/common/scm_rev.cpp.in

19 lines
421 B
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2016-12-18 22:13:55 +05:30
// 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@"
namespace Common {
const char g_scm_rev[] = GIT_REV;
const char g_scm_branch[] = GIT_BRANCH;
const char g_scm_desc[] = GIT_DESC;
} // namespace