Unify the version information

This commit is contained in:
Cameron Gutman
2018-10-20 18:47:36 -07:00
parent 727e8c0339
commit 44625583b9
8 changed files with 37 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
#include <windows.h>
#include "version.h"
#include "../version.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
@@ -9,7 +9,7 @@ BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANYNAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileDescription", "Moonlight Internet Streaming Service"
VALUE "FileVersion", VER_FILEVERSION_STR
END
END

View File

@@ -167,7 +167,7 @@
<ResourceCompile Include="miss.rc" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="version.h" />
<ClInclude Include="..\version.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">

View File

@@ -25,7 +25,7 @@
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="version.h">
<ClInclude Include="..\version.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>

View File

@@ -1,6 +0,0 @@
#pragma once
#define VER_COMPANYNAME_STR "Moonlight Game Streaming Project"
#define VER_FILEVERSION 1,0,0,0
#define VER_FILEVERSION_STR "1.0.0.0\0"
#define VER_FILEDESCRIPTION_STR "Moonlight Internet Streaming Service"