2014-04-24 07:13:57 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
|
|
|
|
#define GIT_REV "@GIT_REV@"
|
2014-04-24 07:43:00 +05:30
|
|
|
#define GIT_BRANCH "@GIT_BRANCH@"
|
2014-04-24 07:13:57 +05:30
|
|
|
#define GIT_DESC "@GIT_DESC@"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
const char g_scm_rev[] = GIT_REV;
|
2014-04-25 20:04:27 +05:30
|
|
|
const char g_scm_branch[] = GIT_BRANCH;
|
2014-04-24 07:13:57 +05:30
|
|
|
const char g_scm_desc[] = GIT_DESC;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|