rpcs3/rpcs3/rpcs3_version.cpp
2019-08-30 03:09:59 +01:00

15 lines
345 B
C++

#include "stdafx.h"
#include "rpcs3_version.h"
#include "git-version.h"
namespace rpcs3
{
std::string get_branch()
{
return RPCS3_GIT_BRANCH;
}
//TODO: Make this accessible from cmake and keep in sync with MACOSX_BUNDLE_BUNDLE_VERSION.
const extern utils::version version{ 0, 0, 7, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
}