2014-04-24 03:43:57 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2016-12-18 17:43:55 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-24 03:43:57 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
|
|
|
|
#define GIT_REV "@GIT_REV@"
|
2014-04-24 04:13:00 +02:00
|
|
|
#define GIT_BRANCH "@GIT_BRANCH@"
|
2014-04-24 03:43:57 +02:00
|
|
|
#define GIT_DESC "@GIT_DESC@"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
const char g_scm_rev[] = GIT_REV;
|
2014-04-25 16:34:27 +02:00
|
|
|
const char g_scm_branch[] = GIT_BRANCH;
|
2014-04-24 03:43:57 +02:00
|
|
|
const char g_scm_desc[] = GIT_DESC;
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|