mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
Added rpcs3 version object
Removed _PRGVER_ macros
This commit is contained in:
parent
079411eee8
commit
b52e885cde
8 changed files with 164 additions and 5 deletions
10
rpcs3/rpcs3_version.cpp
Normal file
10
rpcs3/rpcs3_version.cpp
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue