mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 12:50:51 +00:00
20 lines
426 B
C
20 lines
426 B
C
#ifndef INCLUDED_FROM_BASE_VERSION_CPP
|
|
#error This file may only be included by base/version.cpp
|
|
#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 "1.5.0git" SCUMMVM_REVISION
|