https://github.com/scummvm/scummvm
Raw File
Tip revision: 41b49444b67e82b3a7a6b63a9f40a6dc1abb2fea authored by Eugene Sandulenko on 22 September 2019, 22:12:30 UTC
RELEASE: This is 2.2.0git
Tip revision: 41b4944
internal_version.h
#if !defined(INCLUDED_FROM_BASE_VERSION_CPP) && !defined(RC_INVOKED)
#error This file may only be included by base/version.cpp or dists/scummvm.rc
#endif

// Reads revision number from file
// (this is used when building with Visual Studio)
#ifdef SCUMMVM_INTERNAL_REVISION
#include "internal_revision.h"
#endif

#ifdef RELEASE_BUILD
#undef SCUMMVM_REVISION
#endif

#ifndef SCUMMVM_REVISION
#define SCUMMVM_REVISION
#endif

#define SCUMMVM_VERSION "2.2.0git"

#define SCUMMVM_VER_MAJOR 2
#define SCUMMVM_VER_MINOR 2
#define SCUMMVM_VER_PATCH 0
back to top