mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed updaterevision calls in VC project.
- put back a clean version file into the maintenance branch.
This commit is contained in:
parent
31d748d848
commit
d65af4b5bb
2 changed files with 8 additions and 8 deletions
|
@ -29,7 +29,7 @@
|
|||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
Description="Checking gitinfo.h..."
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src src/gitinfo.h"
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src/gitinfo.h"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
|
@ -153,7 +153,7 @@
|
|||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
Description="Checking gitinfo.h..."
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src src/gitinfo.h"
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src/gitinfo.h"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
|
@ -266,7 +266,7 @@
|
|||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
Description="Checking gitinfo.h..."
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src src/gitinfo.h"
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src/gitinfo.h"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
|
@ -373,7 +373,7 @@
|
|||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
Description="Checking gitinfo.h..."
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src src/gitinfo.h"
|
||||
CommandLine=""$(OutDir)\updaterevision.exe" src/gitinfo.h"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
|
|
|
@ -41,12 +41,12 @@ const char *GetVersionString();
|
|||
|
||||
/** Lots of different version numbers **/
|
||||
|
||||
#define VERSIONSTR "1.8.1"
|
||||
#define VERSIONSTR "1.9pre"
|
||||
|
||||
// The version as seen in the Windows resource
|
||||
#define RC_FILEVERSION 1,8,1,0
|
||||
#define RC_PRODUCTVERSION 1,8,1,0
|
||||
#define RC_PRODUCTVERSION2 "1.8.1"
|
||||
#define RC_FILEVERSION 1,8,9999,0
|
||||
#define RC_PRODUCTVERSION 1,8,9999,0
|
||||
#define RC_PRODUCTVERSION2 "1.9pre"
|
||||
|
||||
// Version identifier for network games.
|
||||
// Bump it every time you do a release unless you're certain you
|
||||
|
|
Loading…
Reference in a new issue