Add additional binary metadata

This commit is contained in:
Cameron Gutman 2019-07-13 11:55:01 -07:00
parent 3403afb42b
commit 52b66262de
2 changed files with 14 additions and 3 deletions

View File

@ -1,15 +1,19 @@
#include <windows.h>
#include "../version.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,0,0
FILEVERSION VER_VERSION
PRODUCTVERSION VER_VERSION
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Moonlight Game Streaming Project"
VALUE "CompanyName", VER_COMPANYNAME_STR
VALUE "FileDescription", "IPv6 Forwarder for GameStream"
VALUE "ProductName", "IPv6 Forwarder for GameStream"
VALUE "ProductName", VER_PRODUCTNAME_STR
VALUE "FileVersion", VER_VERSION_STR
VALUE "ProductVersion", VER_VERSION_STR
END
END

7
version.h Normal file
View File

@ -0,0 +1,7 @@
#pragma once
#define VER_VERSION 1,2,0,0
#define VER_VERSION_STR "1.2.0.0"
#define VER_COMPANYNAME_STR "Moonlight Game Streaming Project"
#define VER_PRODUCTNAME_STR "Moonlight Internet Streaming Helper"