https://github.com/scummvm/scummvm
Raw File
Tip revision: 1ae1d4d8fd1af7fce2e28040ef10c400df5eb9ca authored by Eugene Sandulenko on 04 January 2024, 23:13:57 UTC
DOCS: Fix formatting in Controls table in iOS documentation
Tip revision: 1ae1d4d
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.8.0"

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