2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2017-09-09 19:52:35 +00:00
|
|
|
#include "Common/Version.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-06-26 03:30:32 +00:00
|
|
|
#include "Common/scmrev.h"
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2017-09-09 19:52:35 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2010-07-08 15:44:39 +00:00
|
|
|
#ifdef _DEBUG
|
2016-06-24 08:43:46 +00:00
|
|
|
#define BUILD_TYPE_STR "Debug "
|
2010-07-08 15:44:39 +00:00
|
|
|
#elif defined DEBUGFAST
|
2016-06-24 08:43:46 +00:00
|
|
|
#define BUILD_TYPE_STR "DebugFast "
|
2010-07-08 15:44:39 +00:00
|
|
|
#else
|
2016-06-24 08:43:46 +00:00
|
|
|
#define BUILD_TYPE_STR ""
|
2011-08-21 21:30:19 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-04 21:47:23 +00:00
|
|
|
const std::string scm_rev_str = "Dolphin "
|
2011-08-21 21:30:19 +00:00
|
|
|
#if !SCM_IS_MASTER
|
2016-06-24 08:43:46 +00:00
|
|
|
"[" SCM_BRANCH_STR "] "
|
2011-08-21 21:30:19 +00:00
|
|
|
#endif
|
2011-10-02 02:03:51 +00:00
|
|
|
|
|
|
|
#ifdef __INTEL_COMPILER
|
2016-06-24 08:43:46 +00:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
|
2011-10-02 02:03:51 +00:00
|
|
|
#else
|
2016-06-24 08:43:46 +00:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR;
|
2011-10-02 02:03:51 +00:00
|
|
|
#endif
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2017-09-09 19:52:35 +00: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;
|
|
|
|
|
2010-07-08 15:44:39 +00:00
|
|
|
#ifdef _WIN32
|
2016-05-04 21:47:23 +00:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
2010-07-08 15:44:39 +00:00
|
|
|
#elif __APPLE__
|
2016-05-04 21:47:23 +00:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
2010-07-08 15:44:39 +00:00
|
|
|
#else
|
2017-09-09 19:52:35 +00:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
2010-07-08 15:44:39 +00:00
|
|
|
#endif
|
2017-09-09 19:52:35 +00:00
|
|
|
} // namespace Common
|