mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-19 10:41:55 +00:00
![Johannes Schickel](/assets/img/avatar_default.png)
create_project will now use a different approach than recreating base/internal_version.h. This is also because recreating this file might result in accidental commits of the modified file and thus "screw up" the version string on different systems. svn-id: r54383
14 lines
285 B
C
14 lines
285 B
C
#ifndef INCLUDED_FROM_BASE_VERSION_CPP
|
|
#error This file may only be included by base/version.cpp
|
|
#endif
|
|
|
|
#ifdef RELEASE_BUILD
|
|
#undef SCUMMVM_SVN_REVISION
|
|
#endif
|
|
|
|
#ifndef SCUMMVM_SVN_REVISION
|
|
#define SCUMMVM_SVN_REVISION
|
|
#endif
|
|
|
|
#define SCUMMVM_VERSION "@VERSION@" SCUMMVM_SVN_REVISION
|