https://github.com/scummvm/scummvm
Raw File
Tip revision: 98e0b148521f7d2eef21bfe5b1cb1f440020e6ab authored by Eugene Sandulenko on 30 August 2020, 11:42:19 UTC
RELEASE: This is 2.3.0git
Tip revision: 98e0b14
internal_version.h.in
#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 "@VERSION@"

#define SCUMMVM_VER_MAJOR @VER_MAJOR@
#define SCUMMVM_VER_MINOR @VER_MINOR@
#define SCUMMVM_VER_PATCH @VER_PATCH@
back to top