mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-13 11:50:45 +02:00
20 lines
525 B
C++
20 lines
525 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Common
|
|
{
|
|
// Git version number
|
|
extern const std::string scm_desc_str;
|
|
extern const std::string scm_branch_str;
|
|
extern const std::string scm_rev_str;
|
|
extern const std::string scm_rev_git_str;
|
|
extern const std::string scm_distributor_str;
|
|
extern const std::string scm_update_track_str;
|
|
extern const std::string netplay_dolphin_ver;
|
|
extern const std::string primehack_ver;
|
|
} // namespace Common
|