mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-22 06:21:41 +00:00
cec9e74e02
* 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
|
|
|