- fixed: Change compiled exe version strings to match git repo numbers. This is viewable in Windows by right-clicking on the executable and selecting "Properties".

This commit is contained in:
Rachael Alexanderson 2017-02-15 10:10:54 -05:00 committed by Christoph Oelckers
parent 26144340b8
commit b134ea5b4f
1 changed files with 7 additions and 1 deletions

View File

@ -31,6 +31,8 @@
** **
*/ */
#include "gitinfo.h"
#ifndef __VERSION_H__ #ifndef __VERSION_H__
#define __VERSION_H__ #define __VERSION_H__
@ -41,12 +43,16 @@ const char *GetVersionString();
/** Lots of different version numbers **/ /** Lots of different version numbers **/
#ifdef GIT_DESCRIPTION
#define VERSIONSTR GIT_DESCRIPTION
#else
#define VERSIONSTR "2.3pre" #define VERSIONSTR "2.3pre"
#endif
// The version as seen in the Windows resource // The version as seen in the Windows resource
#define RC_FILEVERSION 2,3,9999,0 #define RC_FILEVERSION 2,3,9999,0
#define RC_PRODUCTVERSION 2,3,9999,0 #define RC_PRODUCTVERSION 2,3,9999,0
#define RC_PRODUCTVERSION2 "2.3pre" #define RC_PRODUCTVERSION2 VERSIONSTR
// Version identifier for network games. // Version identifier for network games.
// Bump it every time you do a release unless you're certain you // Bump it every time you do a release unless you're certain you