mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-26 04:32:35 +01:00
d78b0467d8
* travis hotfix * expose env vars for tag, hash and commit number * bump version * also update av version string * remove hash from av version for master builds * change hash encoding back to ascii
14 lines
252 B
C++
14 lines
252 B
C++
#include "stdafx.h"
|
|
#include "rpcs3_version.h"
|
|
#include "git-version.h"
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string get_branch()
|
|
{
|
|
return RPCS3_GIT_BRANCH;
|
|
}
|
|
|
|
const extern utils::version version{ 0, 0, 5, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
|
|
}
|