mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 16:32:39 +00:00
* Added fork detection * Fallback to "origin" if branch is not found * Add fork names to window titles * clang
16 lines
376 B
C++
16 lines
376 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Common {
|
|
|
|
extern const char g_scm_rev[];
|
|
extern const char g_scm_branch[];
|
|
extern const char g_scm_desc[];
|
|
extern const char g_scm_remote_name[];
|
|
extern const char g_scm_remote_url[];
|
|
extern const char g_scm_date[];
|
|
|
|
} // namespace Common
|