2017-09-09 13:52:35 -06:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-09-09 13:52:35 -06:00
|
|
|
|
|
|
|
#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;
|
2021-05-21 05:57:59 -06:00
|
|
|
extern const std::string scm_update_track_str;
|
2017-09-09 13:52:35 -06:00
|
|
|
extern const std::string netplay_dolphin_ver;
|
|
|
|
} // namespace Common
|