1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-03-21 12:28:56 +01:00

added definitions for our new "versionchanger" script

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40347
This commit is contained in:
David Anderson 2007-03-03 06:57:30 +00:00
parent 45bb183759
commit 859506f742
3 changed files with 35 additions and 14 deletions

9
modules.versions Normal file
View File

@ -0,0 +1,9 @@
[PRODUCT]
major = 1
minor = 4
revision = 0
[sourcemm]
folder = sourcemm
in = svn_version.tpl
out = svn_version.h

View File

@ -1,14 +1,13 @@
/** This file is autogenerated by build scripts */
#ifndef _INCLUDE_SVN_VERSION_H_
#define _INCLUDE_SVN_VERSION_H_
#define SVN_PRODUCT_VERSION "1.4.0"
#define SVN_REVISION 340
#define SVN_REVISION_STRING "340"
#define SVN_FILE_VERSION 1,4,0,340
#define SVN_FILE_VERSION_STRING "1.4.0.340"
#endif //_INCLUDE_SVN_VERSION_H_
/** This file is autogenerated by build scripts */
#ifndef _INCLUDE_SVN_VERSION_H_
#define _INCLUDE_SVN_VERSION_H_
#define SVN_PRODUCT_VERSION "1.4.0"
#define SVN_REVISION 346
#define SVN_REVISION_STRING "346"
#define SVN_FILE_VERSION 1,4,0,346
#define SVN_FILE_VERSION_STRING "1.4.0.346"
#endif //_INCLUDE_SVN_VERSION_H_

13
sourcemm/svn_version.tpl Normal file
View File

@ -0,0 +1,13 @@
/** This file is autogenerated by build scripts */
#ifndef _INCLUDE_SVN_VERSION_H_
#define _INCLUDE_SVN_VERSION_H_
#define SVN_PRODUCT_VERSION "$PMAJOR$.$PMINOR$.$PREVISION$"
#define SVN_REVISION $GLOBAL_BUILD$
#define SVN_REVISION_STRING "$GLOBAL_BUILD$"
#define SVN_FILE_VERSION $PMAJOR$,$PMINOR$,$PREVISION$,$GLOBAL_BUILD$
#define SVN_FILE_VERSION_STRING "$PMAJOR$.$PMINOR$.$PREVISION$.$GLOBAL_BUILD$"
#endif //_INCLUDE_SVN_VERSION_H_