2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:09:55 +03:00
|
|
|
// Refer to the license.txt file included.
|
2010-07-08 18:44:39 +03:00
|
|
|
|
2014-10-21 09:01:38 +03:00
|
|
|
#include "Common/Common.h"
|
2016-06-26 06:30:32 +03:00
|
|
|
#include "Common/scmrev.h"
|
2010-07-08 18:44:39 +03:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2016-06-24 11:43:46 +03:00
|
|
|
#define BUILD_TYPE_STR "Debug "
|
2010-07-08 18:44:39 +03:00
|
|
|
#elif defined DEBUGFAST
|
2016-06-24 11:43:46 +03:00
|
|
|
#define BUILD_TYPE_STR "DebugFast "
|
2010-07-08 18:44:39 +03:00
|
|
|
#else
|
2016-06-24 11:43:46 +03:00
|
|
|
#define BUILD_TYPE_STR ""
|
2011-08-22 00:30:19 +03:00
|
|
|
#endif
|
|
|
|
|
2016-05-05 00:47:23 +03:00
|
|
|
const std::string scm_rev_str = "Dolphin "
|
2011-08-22 00:30:19 +03:00
|
|
|
#if !SCM_IS_MASTER
|
2016-06-24 11:43:46 +03:00
|
|
|
"[" SCM_BRANCH_STR "] "
|
2011-08-22 00:30:19 +03:00
|
|
|
#endif
|
2011-10-02 05:03:51 +03:00
|
|
|
|
|
|
|
#ifdef __INTEL_COMPILER
|
2016-06-24 11:43:46 +03:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
|
2011-10-02 05:03:51 +03:00
|
|
|
#else
|
2016-06-24 11:43:46 +03:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR;
|
2011-10-02 05:03:51 +03:00
|
|
|
#endif
|
2010-07-08 18:44:39 +03:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-05-05 00:47:23 +03:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
2010-07-08 18:44:39 +03:00
|
|
|
#elif __APPLE__
|
2016-05-05 00:47:23 +03:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
2010-07-08 18:44:39 +03:00
|
|
|
#else
|
2016-06-24 11:43:46 +03:00
|
|
|
const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
2010-07-08 18:44:39 +03:00
|
|
|
#endif
|
2013-02-26 11:48:19 +02:00
|
|
|
|
2016-05-05 00:47:23 +03:00
|
|
|
const std::string scm_rev_git_str = SCM_REV_STR;
|
2013-09-23 08:06:03 +03:00
|
|
|
|
2016-05-05 00:47:23 +03:00
|
|
|
const std::string scm_desc_str = SCM_DESC_STR;
|
|
|
|
const std::string scm_branch_str = SCM_BRANCH_STR;
|
2016-06-18 01:13:37 +03:00
|
|
|
const std::string scm_distributor_str = SCM_DISTRIBUTOR_STR;
|