mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
10 lines
222 B
C++
10 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);
|
|
}
|