mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
24 lines
544 B
C
24 lines
544 B
C
#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.6.0git"
|
|
|
|
#define SCUMMVM_VER_MAJOR 2
|
|
#define SCUMMVM_VER_MINOR 6
|
|
#define SCUMMVM_VER_PATCH 0
|