summaryrefslogtreecommitdiffstats
path: root/src/common/scm_rev.cpp.in
blob: 0080db5d5d806da69613b1f4990723c9a3270c2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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@"

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;

} // namespace