https://github.com/scummvm/scummvm
Raw File
Tip revision: c13defd661adfe0ba64afc902ee1c10fb23263ba authored by Colin Snover on 21 November 2017, 21:26:31 UTC
RELEASE: 1.10 will henceforth be known as 2.0
Tip revision: c13defd
internal_version.h
#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 "2.0.0git" SCUMMVM_REVISION
back to top