2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-07-08 09:44:39 -06:00
|
|
|
|
2017-09-09 13:52:35 -06:00
|
|
|
#include "Common/Version.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-06-25 21:30:32 -06:00
|
|
|
#include "Common/scmrev.h"
|
2010-07-08 09:44:39 -06:00
|
|
|
|
2017-09-09 13:52:35 -06:00
|
|
|
namespace Common
|
|
|
|
{
|
2010-07-08 09:44:39 -06:00
|
|
|
#ifdef _DEBUG
|
2011-08-21 15:30:19 -06:00
|
|
|
#define BUILD_TYPE_STR "Debug "
|
2010-07-08 09:44:39 -06:00
|
|
|
#elif defined DEBUGFAST
|
2011-08-21 15:30:19 -06:00
|
|
|
#define BUILD_TYPE_STR "DebugFast "
|
2010-07-08 09:44:39 -06:00
|
|
|
#else
|
2011-08-21 15:30:19 -06:00
|
|
|
#define BUILD_TYPE_STR ""
|
|
|
|
#endif
|
|
|
|
|
2016-05-04 15:47:23 -06:00
|
|
|
const std::string scm_rev_str = "Dolphin "
|
2011-08-21 15:30:19 -06:00
|
|
|
#if !SCM_IS_MASTER
|
|
|
|
"[" SCM_BRANCH_STR "] "
|
|
|
|
#endif
|
2011-10-01 20:03:51 -06:00
|
|
|
|
|
|
|
#ifdef __INTEL_COMPILER
|
|
|
|
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
|
|
|
|
#else
|
2011-08-21 15:30:19 -06:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR;
|
2011-10-01 20:03:51 -06:00
|
|
|
#endif
|
2010-07-08 09:44:39 -06:00
|
|
|
|
2017-09-09 13:52:35 -06:00
|
|
|
const std::string scm_rev_git_str = SCM_REV_STR;
|
|
|
|
const std::string scm_desc_str = SCM_DESC_STR;
|
|
|
|
const std::string scm_branch_str = SCM_BRANCH_STR;
|
|
|
|
const std::string scm_distributor_str = SCM_DISTRIBUTOR_STR;
|
2021-05-21 05:57:59 -06:00
|
|
|
const std::string scm_update_track_str = SCM_UPDATE_TRACK_STR;
|
2017-09-09 13:52:35 -06:00
|
|
|
|
2010-07-08 09:44:39 -06:00
|
|
|
#ifdef _WIN32
|
2016-05-04 15:47:23 -06:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
2010-07-08 09:44:39 -06:00
|
|
|
#elif __APPLE__
|
2016-05-04 15:47:23 -06:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
2010-07-08 09:44:39 -06:00
|
|
|
#else
|
2017-09-09 13:52:35 -06:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
2010-07-08 09:44:39 -06:00
|
|
|
#endif
|
2017-09-09 13:52:35 -06:00
|
|
|
} // namespace Common
|