mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-16 15:43:14 +00:00
* Added fork detection * Fallback to "origin" if branch is not found * Add fork names to window titles * clang
23 lines
684 B
C++
23 lines
684 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#define GIT_REV "@GIT_REV@"
|
|
#define GIT_BRANCH "@GIT_BRANCH@"
|
|
#define GIT_DESC "@GIT_DESC@"
|
|
#define GIT_REMOTE_NAME "@GIT_REMOTE_NAME@"
|
|
#define GIT_REMOTE_URL "@GIT_REMOTE_URL@"
|
|
#define BUILD_DATE "@BUILD_DATE@"
|
|
|
|
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_scm_remote_name[] = GIT_REMOTE_NAME;
|
|
const char g_scm_remote_url[] = GIT_REMOTE_URL;
|
|
const char g_scm_date[] = BUILD_DATE;
|
|
|
|
} // namespace
|
|
|