Cemu/.github/getversion.cpp

10 lines
214 B
C++
Raw Normal View History

2022-08-22 22:21:23 +02:00
#include <stdio.h>
#include "./../src/Common/version.h"
// output current Cemu version for CI workflow. Do not modify
int main()
{
printf("%d.%d", EMULATOR_VERSION_LEAD, EMULATOR_VERSION_MAJOR);
return 0;
}