mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-06 00:17:39 +00:00
37 lines
911 B
Text
37 lines
911 B
Text
#include <windows.h>
|
|
#include "../version.h"
|
|
|
|
IDI_ICON1 ICON DISCARDABLE "app.ico"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION APP_VER_MAJOR,APP_VER_MINOR,APP_VER_BUILD,APP_VER_REV
|
|
PRODUCTVERSION APP_VER_MAJOR,APP_VER_MINOR,APP_VER_BUILD,APP_VER_REV
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "000004b0"
|
|
BEGIN
|
|
VALUE "CompanyName", APP_SITE
|
|
VALUE "FileDescription", APP_DESC
|
|
VALUE "FileVersion", APP_VERSION
|
|
VALUE "LegalCopyright", APP_COPYRIGHT
|
|
VALUE "OriginalFilename", "xmrig.exe"
|
|
VALUE "ProductName", APP_NAME
|
|
VALUE "ProductVersion", APP_VERSION
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0, 1200
|
|
END
|
|
END
|
|
|