mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-29 23:41:12 -06:00
11 lines
222 B
C++
11 lines
222 B
C++
#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);
|
|
}
|