mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-19 02:38:32 +00:00
20 lines
445 B
C
20 lines
445 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 RESIDUALVM_INTERNAL_REVISION
|
|
#include "internal_revision.h"
|
|
#endif
|
|
|
|
#ifdef RELEASE_BUILD
|
|
#undef RESIDUALVM_REVISION
|
|
#endif
|
|
|
|
#ifndef RESIDUALVM_REVISION
|
|
#define RESIDUALVM_REVISION
|
|
#endif
|
|
|
|
#define RESIDUALVM_VERSION "@VERSION@" RESIDUALVM_REVISION
|