2016-05-07 21:38:52 +03:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "rpcs3_version.h"
|
|
|
|
|
#include "git-version.h"
|
|
|
|
|
|
|
|
|
|
namespace rpcs3
|
|
|
|
|
{
|
2017-09-16 12:54:25 +01:00
|
|
|
std::string get_branch()
|
|
|
|
|
{
|
|
|
|
|
return RPCS3_GIT_BRANCH;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 21:17:20 +01:00
|
|
|
// TODO: Make this accessible from cmake and keep in sync with MACOSX_BUNDLE_BUNDLE_VERSION.
|
|
|
|
|
// Currently accessible by Windows and Linux build scripts, see implementations when doing MACOSX
|
2019-08-30 03:04:38 +01:00
|
|
|
const extern utils::version version{ 0, 0, 7, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
|
2016-05-07 21:38:52 +03:00
|
|
|
}
|