xemu/xemu-version.c

10 lines
346 B
C

#include "xemu-version-macro.h"
const int xemu_version_major = XEMU_VERSION_MAJOR;
const int xemu_version_minor = XEMU_VERSION_MINOR;
const int xemu_version_patch = XEMU_VERSION_PATCH;
const char *xemu_version = XEMU_VERSION;
const char *xemu_branch = XEMU_BRANCH;;
const char *xemu_commit = XEMU_COMMIT;
const char *xemu_date = XEMU_DATE;