Added rpcs3 version object

Removed _PRGVER_ macros
This commit is contained in:
DHrpcs3 2016-05-07 21:38:52 +03:00
parent 079411eee8
commit b52e885cde
8 changed files with 164 additions and 5 deletions

10
rpcs3/rpcs3_version.cpp Normal file
View file

@ -0,0 +1,10 @@
#include "stdafx.h"
#include "rpcs3_version.h"
#include "git-version.h"
namespace rpcs3
{
const utils::version version = utils::version{ 0, 0, 1 }
.type(utils::version_type::pre_alpha)
.postfix(RPCS3_GIT_VERSION);
}