mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-28 17:28:26 +00:00
f79da986e3
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions
* Updater * clang * Adding Updater icon * Updater * TR * settings_dialog.ui * Changelog for Pre-release only * Adding Dump and Download icons * Forgot this... * fix linux and resize * powershell_unzip | changelog fix Does not use zlin-ng to unpack, now uses powershell on windows and on linux/mac uses unzip or 7z, and if it does not find it, it will ask if you want to install it before extracting. Do not show the changelog button if: The current version is a pre-release and the version to be downloaded is a release. * Clang * formatting * links fixed --------- Co-authored-by: Xphalnos <164882787+Xphalnos@users.noreply.github.com>
20 lines
482 B
C++
20 lines
482 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 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_date[] = BUILD_DATE;
|
|
|
|
} // namespace
|
|
|