https://github.com/scummvm/scummvm
Raw File
Tip revision: af5218d128d2ee63fde3251e854071af1ca00a4d authored by antoniou on 25 October 2020, 11:52:41 UTC
ANDROID: update comment on build.gradle
Tip revision: af5218d
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.1pre"

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